]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-list_wernis.php
Re-added height, but smaller to make most menus appear shorter
[mailer.git] / inc / modules / admin / what-list_wernis.php
index 9c45ff11d358bff306f3c5acb9a57abc5e8989fa..54327a079ad21a0edce50197f1638ce2f9ac230c 100644 (file)
@@ -16,7 +16,7 @@
  * $Author::                                                          $ *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
- * Copyright (c) 2009 - 2012 by Mailer Developer Team                   *
+ * Copyright (c) 2009 - 2013 by Mailer Developer Team                   *
  * For more information visit: http://mxchange.org                      *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
@@ -44,7 +44,7 @@ if ((!defined('__SECURITY')) || (!isAdmin())) {
 addYouAreHereLink('admin', __FILE__);
 
 // Check for entries
-$result = SQL_QUERY('SELECT
+$result = sqlQuery('SELECT
        `id`,
        `userid`,
        `wernis_account`,
@@ -61,10 +61,10 @@ ORDER BY
        __FILE__, __LINE__);
 
 // Are there some entries to display?
-if (!SQL_HASZERONUMS($result)) {
+if (!ifSqlHasZeroNums($result)) {
        // List all entries
        $OUT = '';
-       while ($content = SQL_FETCHARRAY($result)) {
+       while ($content = sqlFetchArray($result)) {
                // Translate some data and add color
                $content['wernis_timestamp'] = generateDateTime($content['wernis_timestamp'], 2);
 
@@ -86,7 +86,7 @@ if (!SQL_HASZERONUMS($result)) {
 }
 
 // Free the result
-SQL_FREERESULT($result);
+sqlFreeResult($result);
 
 // [EOF]
 ?>