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:
authorRouslan Placella <rouslan@placella.com>2012-06-15 00:32:15 +0400
committerRouslan Placella <rouslan@placella.com>2012-06-15 00:32:15 +0400
commit71988ff7d1384050a50448a52b8f5cfb9adb715b (patch)
tree95ad0570f40911704ca3210ea36f6325a38b3b72 /main.php
parentdc8f8829194859837b0b32488691cd3dd3258a77 (diff)
Fixed bad variable name
Diffstat (limited to 'main.php')
-rw-r--r--main.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/main.php b/main.php
index 6bbd41d632..fdc2d86ffe 100644
--- a/main.php
+++ b/main.php
@@ -329,14 +329,14 @@ if (file_exists('config')) {
if ($server > 0) {
$cfgRelation = PMA_getRelationsParam();
if (! $cfgRelation['allworks'] && $cfg['PmaNoRelation_DisableWarning'] == false) {
- $message = PMA_Message::notice(__('The phpMyAdmin configuration storage is not completely configured, some extended features have been deactivated. To find out why click %shere%s.'));
- $message->addParam('<a href="' . $cfg['PmaAbsoluteUri'] . 'chk_rel.php?' . $common_url_query . '">', false);
- $message->addParam('</a>', false);
+ $msg = PMA_Message::notice(__('The phpMyAdmin configuration storage is not completely configured, some extended features have been deactivated. To find out why click %shere%s.'));
+ $msg->addParam('<a href="' . $cfg['PmaAbsoluteUri'] . 'chk_rel.php?' . $common_url_query . '">', false);
+ $msg->addParam('</a>', false);
/* Show error if user has configured something, notice elsewhere */
if (!empty($cfg['Servers'][$server]['pmadb'])) {
- $message->isError(true);
+ $msg->isError(true);
}
- $message->display();
+ $msg->display();
} // end if
}