Use camel case for function names

This commit is contained in:
Madhura Jayaratne 2012-06-23 22:52:29 +05:30
parent 74ef192c72
commit a79cbc51e8
5 changed files with 5 additions and 5 deletions

View File

@ -121,7 +121,7 @@ function PMA_auth_fails()
include_once './libraries/select_server.lib.php';
echo '<tr>' . "\n";
echo ' <td>' . "\n";
PMA_select_server(true, true);
PMA_selectServer(true, true);
echo ' </td>' . "\n";
echo '</tr>' . "\n";
}

View File

@ -256,7 +256,7 @@ function PMA_auth()
echo '>';
include_once './libraries/select_server.lib.php';
PMA_select_server(false, false);
PMA_selectServer(false, false);
echo '</select></div>';
} else {

View File

@ -101,7 +101,7 @@ echo '</div>' . "\n";
if ($GLOBALS['cfg']['LeftDisplayServers'] && (count($GLOBALS['cfg']['Servers']) > 1 || $server == 0 && count($GLOBALS['cfg']['Servers']) == 1)) {
echo '<div id="serverinfo">';
include './libraries/select_server.lib.php';
PMA_select_server(true, true);
PMA_selectServer(true, true);
echo '</div><br />';
} // end if LeftDisplayServers
?>

View File

@ -17,7 +17,7 @@ if (! defined('PHPMYADMIN')) {
*
* @return void
*/
function PMA_select_server($not_only_options, $ommit_fieldset)
function PMA_selectServer($not_only_options, $ommit_fieldset)
{
// Show as list?
if ($not_only_options) {

View File

@ -82,7 +82,7 @@ if ($server > 0
) {
echo '<li id="li_select_server">';
include_once 'libraries/select_server.lib.php';
PMA_select_server(true, true);
PMA_selectServer(true, true);
echo '</li>';
}