Renamed all SQL-related functions to camel-case notation
[mailer.git] / inc / modules / admin / what-config_imprint.php
index 46216ef0fbf8dfa1ba877f1dbe20be4aa4727a5c..5202966642b360dbc5792c638f434765ed64240b 100644 (file)
@@ -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 (!ifSqlHasZeroNums($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