Skip to content

Commit

Permalink
refactor the function name to PMA_getHtmlForSqlQueryFormBookmark
Browse files Browse the repository at this point in the history
  • Loading branch information
xmujay committed Aug 18, 2013
1 parent eb47a21 commit e3e100f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libraries/sql_query_form.lib.php
Expand Up @@ -134,7 +134,7 @@ function PMA_sqlQueryForm($query = true, $display_tab = false, $delimiter = ';')
// Bookmark Support
if ($display_tab === 'full' || $display_tab === 'history') {
if (! empty($GLOBALS['cfg']['Bookmark'])) {
$html .= PMA_getHtmlForsqlQueryFormBookmark();
$html .= PMA_getHtmlForSqlQueryFormBookmark();
}
}

Expand Down Expand Up @@ -390,7 +390,7 @@ function PMA_getHtmlForSqlQueryFormInsert(
*
* @usedby PMA_sqlQueryForm()
*/
function PMA_getHtmlForsqlQueryFormBookmark()
function PMA_getHtmlForSqlQueryFormBookmark()
{
$bookmark_list = PMA_Bookmark_getList($GLOBALS['db']);
if (! $bookmark_list || count($bookmark_list) < 1) {
Expand Down

0 comments on commit e3e100f

Please sign in to comment.