@@ -20,7 +20,7 @@ |
||
20 | 20 | $admin = $this->getAdminNavbar(); |
21 | 21 | $navBar = $this->getPrimaryNavbar(); |
22 | 22 | $modules = $this->getModules(); |
23 | - array_splice($navBar, 1, 0, $admin); // Move the Admin link just under the Dashboard link |
|
23 | + array_splice($navBar, 1, 0, $admin); // Move the Admin link just under the Dashboard link |
|
24 | 24 | |
25 | 25 | return array_merge($navBar, $modules); |
26 | 26 | } |
@@ -211,7 +211,7 @@ |
||
211 | 211 | if(count($modNav) > 0) |
212 | 212 | { |
213 | 213 | // Split Camel Case name into normal name |
214 | - $nav[implode(' ',preg_split('/(?=[A-Z])/', $module->getName()))] = $modNav; |
|
214 | + $nav[implode(' ', preg_split('/(?=[A-Z])/', $module->getName()))] = $modNav; |
|
215 | 215 | } |
216 | 216 | } |
217 | 217 |