From 9842edbb2671cea48517e9e879e938c8c9bb8700 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Sat, 8 Oct 2005 15:24:53 +0000 Subject: [PATCH] Use strError instead of non existing strFailure. --- ChangeLog | 2 ++ tbl_properties_operations.php | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 533bc79e0..3f9c6197a 100755 --- a/ChangeLog +++ b/ChangeLog @@ -39,6 +39,8 @@ $Source$ * libraries/sqlvalidator.lib.php: Removed unused code. * server_privileges.php, lang/*: Better show error, define used message strDeleteNoUsersSelected. + * tbl_properties_operations.php: Use strError instead of non existing + strFailure. 2005-10-07 Marc Delisle * libraries/check_user_privileges.lib.php: bug #1313821, dbname containing a diff --git a/tbl_properties_operations.php b/tbl_properties_operations.php index d70ce6558..0301fc920 100644 --- a/tbl_properties_operations.php +++ b/tbl_properties_operations.php @@ -71,7 +71,7 @@ if (isset($submitorderby) && !empty($order_field)) { $sql_query .= ' DESC'; } $result = PMA_DBI_query($sql_query); - $message = $result ? $strSuccess : $strFailed; + $message = $result ? $strSuccess : $strError; } // end if /**