Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc Delisle <marc@infomarc.info>2012-03-07 17:03:34 +0400
committerMarc Delisle <marc@infomarc.info>2012-03-07 17:03:34 +0400
commitfe67082f96e92f74d9748a55eed53f5ecde092d6 (patch)
tree6377f338c5f6ea98bafa5d6d0090586268bc8ca1 /server_privileges.php
parent892d638840aaf09c5f7147fe0abfc2d49335ff5c (diff)
Operators spacing; rephrase a message
Diffstat (limited to 'server_privileges.php')
-rw-r--r--server_privileges.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/server_privileges.php b/server_privileges.php
index a4da076462..12ca919b6d 100644
--- a/server_privileges.php
+++ b/server_privileges.php
@@ -9,10 +9,10 @@
*
*/
require_once './libraries/common.inc.php';
-if (!defined('ALL_USERS')) {
+if (! defined('ALL_USERS')) {
define("ALL_USERS", "All Users");
}
-if (!defined('ALL_DB')) {
+if (! defined('ALL_DB')) {
define("ALL_DB", "All Databases");
}
@@ -1496,7 +1496,7 @@ $link_export_all = '<a class="export_user_anchor ' . $conditional_class . '" hre
. '&amp;hostname=%s'
. '&amp;initial=%s'
. '&amp;export=1">'
- . PMA_getIcon('b_tblexport.png', __('Export All'))
+ . PMA_getIcon('b_tblexport.png', __('Export all'))
. '</a>';
/**
@@ -1593,7 +1593,7 @@ if (isset($viewing_mode) && $viewing_mode == 'db') {
// export user definition
if (isset($_REQUEST['export'])) {
$response = '<textarea cols="' . $GLOBALS['cfg']['TextareaCols'] . '" rows="' . $GLOBALS['cfg']['TextareaRows'] . '">';
- if (!strcmp(htmlspecialchars($username), ALL_USERS)) {
+ if (! strcmp(htmlspecialchars($username), ALL_USERS)) {
// export privileges for all users
$title = __('Privileges for ') . htmlspecialchars($username) . ' @ ' . htmlspecialchars($hostname);
foreach ($_SESSION['user_host_pairs'] as $pair) {