Fixed method naming convention

Signed-off-by: Chanaka Indrajith <pe.chanaka.ck@gmail.com>
This commit is contained in:
Chanaka Indrajith 2014-04-08 00:36:55 +05:30
parent 507fa83e7f
commit a559543bfb
2 changed files with 2 additions and 2 deletions

View File

@ -118,7 +118,7 @@ if ($server > 0) {
echo '<div id="maincontainer">' . "\n";
// Anchor for favorite tables synchronization.
echo PMA_RecentFavoriteTable::getInstance('favorite')->_getHtmlSyncFavoriteTables();
echo PMA_RecentFavoriteTable::getInstance('favorite')->getHtmlSyncFavoriteTables();
echo '<div id="main_pane_left">';
if ($server > 0 || count($cfg['Servers']) > 1
) {

View File

@ -289,7 +289,7 @@ class PMA_RecentFavoriteTable
*
* @return string
*/
public function _getHtmlSyncFavoriteTables()
public function getHtmlSyncFavoriteTables()
{
$retval = '';
$server_id = $GLOBALS['server'];