Updated ApplicationHelper class to latest API
authorRoland Häder <roland@mxchange.org>
Thu, 20 Dec 2012 21:18:21 +0000 (21:18 +0000)
committerRoland Häder <roland@mxchange.org>
Thu, 20 Dec 2012 21:18:21 +0000 (21:18 +0000)
application/admin/class_ApplicationHelper.php

index 965cfa356334c1c424a6c17229fa74807388b5cf..b949d7eee45d55e17d638146227c0ae93353bb9f 100644 (file)
@@ -43,17 +43,17 @@ class ApplicationHelper extends BaseApplication implements ManageableApplication
        /**
         * The version number of this application
         */
-       private $appVersion = "";
+       private $appVersion = '';
 
        /**
         * The human-readable name for this application
         */
-       private $appName = "";
+       private $appName = '';
 
        /**
         * The short uni*-like name for this application
         */
-       private $shortName = "";
+       private $shortName = '';
 
        /**
         * An instance of a controller
@@ -160,7 +160,7 @@ class ApplicationHelper extends BaseApplication implements ManageableApplication
         */
        public function buildMasterTemplateName () {
                // Get short name and add suffix
-               $masterTemplateName = str_replace("-", "", $this->getAppShortName()) . "_main";
+               $masterTemplateName = str_replace('-', '', $this->getAppShortName()) . '_main';
 
                // Return it
                return $masterTemplateName;