Skip to content

Commit

Permalink
Merge pull request #13 from michitux/master
Browse files Browse the repository at this point in the history
Add PHP 5.4 support
  • Loading branch information
splitbrain committed May 11, 2012
2 parents 3da1093 + 0bd5755 commit e2ea8c3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions syntax/table.php
Expand Up @@ -87,9 +87,9 @@ function _showData(&$R, $data){

// filter and search
$R->doc .= '<div class="repoFilter">'.NL;
$this->_showMainSearch(&$R, $data);
$this->_showMainSearch($R, $data);
if (!$data['plugintype']) {
$this->_showPluginTypeFilter(&$R, $data);
$this->_showPluginTypeFilter($R, $data);
}
$R->doc .= '</div>'.NL;

Expand All @@ -103,7 +103,7 @@ function _showData(&$R, $data){
$R->section_close();

// main table
$this->_showPluginTable(&$R, $data);
$this->_showPluginTable($R, $data);
}

/**
Expand Down

0 comments on commit e2ea8c3

Please sign in to comment.