A lot rewrites from double-quote to single-quote, some fixes for extension handling...
[mailer.git] / theme / default / theme.php
index b42cb8ada3f347898318ee9d5dcba0495ff136e1..be4895b935481c5ed9debb7f77b4719f09422c08 100644 (file)
@@ -46,29 +46,29 @@ if (!defined('__SECURITY')) {
 // Theme definitions
 //
 // The name of your theme
-$GLOBALS['theme_data']['name'] = "Standart-Theme";
+$GLOBALS['theme_data']['name'] = 'Standart-Theme';
 
 // Only your name please!
-$GLOBALS['theme_data']['author'] = "Roland Häder";
+$GLOBALS['theme_data']['author'] = 'Roland Häder';
 
 // Your email address
-$GLOBALS['theme_data']['email'] = "webmaster@mxchange.org";
+$GLOBALS['theme_data']['email'] = 'webmaster@mxchange.org';
 
 // URL where you have uploaded it
-$GLOBALS['theme_data']['url'] = "http://www.mxchange.org";
+$GLOBALS['theme_data']['url'] = 'http://www.mxchange.org';
 
 // Version number
-$GLOBALS['theme_data']['version'] = "0.0";
+$GLOBALS['theme_data']['version'] = '0.0';
 
 // Switch mode
-if (empty($GLOBALS['theme_mode'])) $GLOBALS['theme_mode'] = "load";
+if (empty($GLOBALS['theme_mode'])) $GLOBALS['theme_mode'] = 'load';
 
 switch ($GLOBALS['theme_mode'])
 {
-case "test": // Do stuff while testing the theme: The admin clicked on "Import"
+case 'test': // Do stuff while testing the theme: The admin clicked on 'Import'
        break;
 
-case "load": // Do stuff while theme is loaded normally
+case 'load': // Do stuff while theme is loaded normally
        break;
 }
 //