Use strError instead of non existing strFailure.

This commit is contained in:
Michal Čihař
2005-10-08 15:24:53 +00:00
parent 5214f57c6f
commit 9842edbb26
2 changed files with 3 additions and 1 deletions

View File

@@ -39,6 +39,8 @@ $Source$
* libraries/sqlvalidator.lib.php: Removed unused code. * libraries/sqlvalidator.lib.php: Removed unused code.
* server_privileges.php, lang/*: Better show error, define used message * server_privileges.php, lang/*: Better show error, define used message
strDeleteNoUsersSelected. strDeleteNoUsersSelected.
* tbl_properties_operations.php: Use strError instead of non existing
strFailure.
2005-10-07 Marc Delisle <lem9@users.sourceforge.net> 2005-10-07 Marc Delisle <lem9@users.sourceforge.net>
* libraries/check_user_privileges.lib.php: bug #1313821, dbname containing a * libraries/check_user_privileges.lib.php: bug #1313821, dbname containing a

View File

@@ -71,7 +71,7 @@ if (isset($submitorderby) && !empty($order_field)) {
$sql_query .= ' DESC'; $sql_query .= ' DESC';
} }
$result = PMA_DBI_query($sql_query); $result = PMA_DBI_query($sql_query);
$message = $result ? $strSuccess : $strFailed; $message = $result ? $strSuccess : $strError;
} // end if } // end if
/** /**