Skip to content

Commit

Permalink
rename private variable, should start with underscore
Browse files Browse the repository at this point in the history
  • Loading branch information
ruleant committed May 19, 2012
1 parent 5a3299f commit 291e248
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libraries/Theme.class.php
Expand Up @@ -68,7 +68,7 @@ class PMA_Theme
* @var array List of css files to load
* @access private
*/
private $css_files = array(
private $_cssFiles = array(
'common',
'enum_editor',
'gis',
Expand Down Expand Up @@ -329,7 +329,7 @@ public function loadCss()
$left = 'right';
}

foreach ($this->css_files as $file) {
foreach ($this->_cssFiles as $file) {
$path = $this->getPath() . "/css/$file.css.php";
$fallback = PMA_Theme_Manager::FALLBACK_THEME . "/css/$file.css.php";

Expand Down

0 comments on commit 291e248

Please sign in to comment.