Add and improve OpenRecoveryScript support

Improve zip finding in ORS engine
Add support for restoring with just a backup name
diff --git a/partitionmanager.cpp b/partitionmanager.cpp
index b2bbf8e..67ec84e 100644
--- a/partitionmanager.cpp
+++ b/partitionmanager.cpp
@@ -1497,4 +1497,13 @@
 	Mount_By_Path(DataManager::GetSettingsStoragePath(), true);
 	Mount_By_Path(DataManager::GetCurrentStoragePath(), true);
 	return true;
+}
+
+void TWPartitionManager::Mount_All_Storage(void) {
+	std::vector<TWPartition*>::iterator iter;
+
+	for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
+		if ((*iter)->Is_Storage)
+			(*iter)->Mount(false);
+	}
 }
\ No newline at end of file