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:
authorSebastian Mendel <cybot_tm@users.sourceforge.net>2006-09-21 18:28:46 +0400
committerSebastian Mendel <cybot_tm@users.sourceforge.net>2006-09-21 18:28:46 +0400
commit1eadc0a41a8173e019ff92f3ed41ab0ca7dc3025 (patch)
treef4fbd7f212c4be189a801438bbf3dd3b01d01764 /server_privileges.php
parentca44c117a29e60bbe7c33220e2f9a7b484b8d62a (diff)
use @todo tag for todo items, to show up in generated documentation
Diffstat (limited to 'server_privileges.php')
-rw-r--r--server_privileges.php8
1 files changed, 6 insertions, 2 deletions
diff --git a/server_privileges.php b/server_privileges.php
index cdc36eb501..64e9663785 100644
--- a/server_privileges.php
+++ b/server_privileges.php
@@ -783,7 +783,9 @@ if (!empty($adduser_submit) || !empty($change_copy)) {
$create_user_show = $create_user_real;
}
}
- // FIXME: similar code appears twice in this script
+ /**
+ * @todo similar code appears twice in this script
+ */
if ((isset($Grant_priv) && $Grant_priv == 'Y') || (PMA_MYSQL_INT_VERSION >= 40002 && (isset($max_questions) || isset($max_connections) || isset($max_updates) || isset($max_user_connections)))) {
$real_sql_query .= 'WITH';
$sql_query .= 'WITH';
@@ -989,7 +991,9 @@ if (!empty($update_privs)) {
. ' ON ' . $db_and_table
. ' TO \'' . PMA_sqlAddslashes($username) . '\'@\'' . $hostname . '\'';
- // FIXME: similar code appears twice in this script
+ /**
+ * @todo similar code appears twice in this script
+ */
if ( ( isset($Grant_priv) && $Grant_priv == 'Y')
|| ( ( ! isset($dbname) || ! strlen($dbname) ) && PMA_MYSQL_INT_VERSION >= 40002
&& ( isset($max_questions) || isset($max_connections)