Renamed all SQL-related functions to camel-case notation
[mailer.git] / inc / modules / admin / what-list_network_request_params.php
index b353947a26d2563482d4247f2bb3335a446cf49e..1f2487e30bae5e2121f871bc711688345797b340 100644 (file)
@@ -84,7 +84,7 @@ if (isGetRequestElementSet('network_id')) {
        } // END - if
 
        // Load all advert types for given network
-       $result = SQL_QUERY_ESC("SELECT
+       $result = sqlQueryEscaped("SELECT
        `p`.`network_request_param_id`,
        `t`.`network_type_id`,
        `t`.`network_type_handler`,
@@ -105,10 +105,10 @@ ORDER BY
                array(bigintval(getRequestElement('network_id'))), __FILE__, __LINE__);
 
        // Are there entries?
-       if (!SQL_HASZERONUMS($result)) {
+       if (!ifSqlHasZeroNums($result)) {
                // List all entries
                $OUT = '';
-               while ($row = SQL_FETCHARRAY($result)) {
+               while ($row = sqlFetchArray($result)) {
                        // Add it to network if the type matches selected
                        if ($row['network_type_id'] == postRequestElement('network_type_id')) {
                                // Matches, then add it for disabling this entry
@@ -133,7 +133,7 @@ ORDER BY
        }
 
        // Free result
-       SQL_FREERESULT($result);
+       sqlFreeResult($result);
 
        // Add form for adding new params
        loadTemplate('admin_add_network_request_param', FALSE, $networkData);