Index: trunk/admin/include/sections.php =================================================================== diff -u -r3580 -r3830 --- trunk/admin/include/sections.php (.../sections.php) (revision 3580) +++ trunk/admin/include/sections.php (.../sections.php) (revision 3830) @@ -205,17 +205,17 @@ function GetSection($section) { - if(is_array($this->sections) && strlen($section)) - { - if(array_key_exists($section,$this->sections)) - { + if (is_array($this->sections) && strlen($section)) { + if (array_key_exists($section, $this->sections)) { return $this->sections[$section]; } - else - return NULL; + else { + return null; + } } - else - return NULL; + else { + return null; + } } function SetCurrentSection($section)