diff --git a/htdocs/sql/libraries/auth/signon.auth.lib.php b/htdocs/sql/libraries/auth/signon.auth.lib.php deleted file mode 100755 --- a/htdocs/sql/libraries/auth/signon.auth.lib.php +++ /dev/null @@ -1,174 +0,0 @@ - authentication failed - * - * @return boolean always true (no return indeed) - * - * @access public - */ -function PMA_auth_fails() -{ - $error = PMA_DBI_getError(); - if ($error && $GLOBALS['errno'] != 1045) { - PMA_fatalError($error); - } else { - PMA_auth(); - return true; - } - -} // end of the 'PMA_auth_fails()' function - -?>