X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-list_network_request_params.php;h=1f2487e30bae5e2121f871bc711688345797b340;hb=e5527fd38a6585c8466dc28d013f12d21eb7c07a;hp=4bcfdca2a16f2469945cb2cdf52d09af21d90ecd;hpb=c0c6d5d58bdecd22bdcf7dfe5b24bec69e1810c7;p=mailer.git diff --git a/inc/modules/admin/what-list_network_request_params.php b/inc/modules/admin/what-list_network_request_params.php index 4bcfdca2a1..1f2487e30b 100644 --- a/inc/modules/admin/what-list_network_request_params.php +++ b/inc/modules/admin/what-list_network_request_params.php @@ -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 * @@ -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);