X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Flibs%2Fadmins_functions.php;h=c1851a0cfe8e7815b3af6e60591b45197100e9d5;hb=8fad776382e63b3f73f8dbe289f229d79cfc2c22;hp=df2023fc3cb830c4b9b1fc64dac8052955e8c02d;hpb=b0ed0547ba277e815ca38b3333b191149a88019c;p=mailer.git diff --git a/inc/libs/admins_functions.php b/inc/libs/admins_functions.php index df2023fc3c..c1851a0cfe 100644 --- a/inc/libs/admins_functions.php +++ b/inc/libs/admins_functions.php @@ -418,7 +418,7 @@ function adminsDeleteAdminAccount ($postData) { $result = SQL_QUERY_ESC("SELECT `login`,`email`,`default_acl` AS `access_mode`,`la_mode` FROM `{?_MYSQL_PREFIX?}_admins` WHERE `id`=%s LIMIT 1", array($id), __FUNCTION__, __LINE__); - // Do we have an entry? + // Is there an entry? if (SQL_NUMROWS($result) == 1) { // Entry found, so load data $content = SQL_FETCHARRAY($result); @@ -676,7 +676,7 @@ function getAdminLoginFailures ($adminId) { $result = SQL_QUERY_ESC("SELECT `login_failures` FROM `{?_MYSQL_PREFIX?}_admins` WHERE `id`=%s LIMIT 1", array($adminId), __FUNCTION__, __LINE__); - // Do we have an entry? + // Is there an entry? if (SQL_NUMROWS($result) == 1) { // Get it $data = SQL_FETCHARRAY($result); @@ -712,7 +712,7 @@ function getAdminLastFailure ($adminId) { $result = SQL_QUERY_ESC("SELECT UNIX_TIMESTAMP(`last_failure`) AS `last_failure` FROM `{?_MYSQL_PREFIX?}_admins` WHERE `id`=%s LIMIT 1", array($adminId), __FUNCTION__, __LINE__); - // Do we have an entry? + // Is there an entry? if (SQL_NUMROWS($result) == 1) { // Get it $data = SQL_FETCHARRAY($result);