X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-config_imprint.php;h=806689398703f8598188bf54d4a0357d9d786913;hb=61621983cc6d7195fcc7eab29b5f6080ff283b34;hp=1779042b54d34396f22e0b21d7f41e96e911cf2a;hpb=02926f5327b32cae01d13b3db3fdfad971393982;p=mailer.git diff --git a/inc/modules/admin/what-config_imprint.php b/inc/modules/admin/what-config_imprint.php index 1779042b54..8066893987 100644 --- a/inc/modules/admin/what-config_imprint.php +++ b/inc/modules/admin/what-config_imprint.php @@ -16,7 +16,7 @@ * $Author:: $ * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * - * Copyright (c) 2009 - 2012 by Mailer Developer Team * + * Copyright (c) 2009 - 2016 by Mailer Developer Team * * For more information visit: http://mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -48,7 +48,7 @@ if (isFormSent('save_config')) { // Handle form ... } else { // Query for all imprint data rows - $result = SQL_QUERY('SELECT + $result = sqlQuery('SELECT `imprint_key`, `imprint_value` FROM @@ -57,10 +57,10 @@ ORDER BY `imprint_id` ASC', __FILE__, __LINE__); // Are there entries? - if (!SQL_HASZERONUMS($result)) { + if (!ifSqlHasZeroNumRows($result)) { // Load all entries $OUT = ''; - while ($content = SQL_FETCHARRAY($result)) { + while ($content = sqlFetchArray($result)) { // Load row template $OUT .= loadTemplate('admin_list_imprint_row', TRUE, $content); } // END - while