Merge pull request #4863 from totten/master-phpcbf4
[civicrm-core.git] / CRM / Admin / Page / Admin.php
index 0a5a3d1afa5e50ac53e38381530c77b6f3a5b32e..e62f83c667fb7b51551f98cae0635e02dc822a46 100644 (file)
@@ -40,7 +40,7 @@ class CRM_Admin_Page_Admin extends CRM_Core_Page {
   /**
    * @return string
    */
-  function run() {
+  public function run() {
     $errorMessage = '';
     // ensure that all CiviCRM tables are InnoDB, else abort
     // this is not a very fast operation, so we do it randomly 10% of the times
@@ -57,7 +57,8 @@ class CRM_Admin_Page_Admin extends CRM_Core_Page {
       CRM_Core_Session::setStatus($errorMessage, ts('Warning'), "alert", array('expires' => 0));
     }
 
-    $groups = array('Customize Data and Screens' => ts('Customize Data and Screens'),
+    $groups = array(
+    'Customize Data and Screens' => ts('Customize Data and Screens'),
       'Communications' => ts('Communications'),
       'Localization' => ts('Localization'),
       'Users and Permissions' => ts('Users and Permissions'),
@@ -119,4 +120,3 @@ class CRM_Admin_Page_Admin extends CRM_Core_Page {
     return parent::run();
   }
 }
-