Index: trunk/wb/modules/backup/tool.php
===================================================================
--- trunk/wb/modules/backup/tool.php	(revision 175)
+++ trunk/wb/modules/backup/tool.php	(revision 176)
@@ -24,6 +24,6 @@
 */
 
 // Direct access prevention
-define('WB_PATH') OR die(header('Location: ../index.php'));
+defined('WB_PATH') OR die(header('Location: ../index.php'));
 
 ?>
\ No newline at end of file
Index: trunk/wb/modules/reload/info.php
===================================================================
--- trunk/wb/modules/reload/info.php	(revision 175)
+++ trunk/wb/modules/reload/info.php	(revision 176)
@@ -24,7 +24,7 @@
 */
 
 $module_directory = 'reload';
-$module_name = 'Reload Add-ons Database';
+$module_name = 'Reload Add-ons';
 $module_function = 'tool';
 $module_version = '2.6';
 $module_platform = '2.6.x';
Index: trunk/wb/modules/reload/tool.php
===================================================================
--- trunk/wb/modules/reload/tool.php	(revision 175)
+++ trunk/wb/modules/reload/tool.php	(revision 176)
@@ -24,6 +24,37 @@
 */
 
 // Direct access prevention
-define('WB_PATH') OR die(header('Location: ../index.php'));
+defined('WB_PATH') OR die(header('Location: ../index.php'));
 
+// Check if user selected what add-ons to reload
+if(isset($_POST['submit']) AND $_POST['submit'] != '') {
+	// Include functions file
+	require_once(WB_PATH.'/framework/functions.php');
+	// Perform empty/reload
+	if(isset($_POST['reload_modules'])) {
+		// Remove all modules
+		$database->query("DELETE FROM ".TABLE_PREFIX."addons WHERE type = 'module'");
+		// Load all modules
+		if($handle = opendir(WB_PATH.'/modules/')) {
+			while(false !== ($file = readdir($handle))) {
+				if($file != '' AND substr($file, 0, 1) != '.' AND $file != 'admin.php' AND $file != 'index.php') {
+					load_module(WB_PATH.'/modules/'.$file, true);
+				}
+			}
+		closedir($handle);
+		}
+		echo $TEXT['MODULES_RELOADED'];
+	}
+	if(isset($_POST['reload_templates'])) {
+		
+		echo $TEXT['TEMPLATES_RELOADED'];
+	}
+	if(isset($_POST['reload_languages'])) {
+		
+		echo $TEXT['LANGAUGES_RELOADED'];
+	}
+} else {
+	// Display confirmation
+}
+
 ?>
\ No newline at end of file
