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:
authorPiotr Przybylski <piotrprz@gmail.com>2011-07-22 13:07:04 +0400
committerPiotr Przybylski <piotrprz@gmail.com>2011-07-22 13:07:04 +0400
commit3586bb992f0e6c325207dc55bd01c1f3607f0b31 (patch)
tree8152d54c4ae7e92c342bf1f5e2126fee22ecdbdb /main.php
parent74a00a110f6d15d24b5b40c02ec8a3916a6acd15 (diff)
parentd8f6e7da389da4ff99435dea358b713af116f9e1 (diff)
Merge remote-tracking branch 'origin/master' into drizzle
Conflicts: db_structure.php libraries/database_interface.lib.php libraries/server_synchronize.lib.php server_status.php sql.php
Diffstat (limited to 'main.php')
-rw-r--r--main.php18
1 files changed, 9 insertions, 9 deletions
diff --git a/main.php b/main.php
index ff1d084b0c..9fce5e16b8 100644
--- a/main.php
+++ b/main.php
@@ -290,7 +290,7 @@ if (file_exists('./config')) {
if ($server > 0) {
$cfgRelation = PMA_getRelationsParam();
- if(! $cfgRelation['allworks'] && $cfg['PmaNoRelation_DisableWarning'] == false) {
+ 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);
@@ -364,14 +364,14 @@ if (file_exists('./libraries/language_stats.inc.php')) {
/**
* prints list item for main page
*
- * @param string $name displayed text
- * @param string $id id, used for css styles
- * @param string $url make item as link with $url as target
- * @param string $mysql_help_page display a link to MySQL's manual
- * @param string $target special target for $url
- * @param string $a_id id for the anchor, used for jQuery to hook in functions
- * @param string $class class for the li element
- * @param string $a_class class for the anchor element
+ * @param string $name displayed text
+ * @param string $id id, used for css styles
+ * @param string $url make item as link with $url as target
+ * @param string $mysql_help_page display a link to MySQL's manual
+ * @param string $target special target for $url
+ * @param string $a_id id for the anchor, used for jQuery to hook in functions
+ * @param string $class class for the li element
+ * @param string $a_class class for the anchor element
*/
function PMA_printListItem($name, $id = null, $url = null, $mysql_help_page = null, $target = null, $a_id = null, $class = null, $a_class = null)
{