]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-list_network_array_translation.php
Rewrote 'we' word a little, rewrote mail order to use SQL_INSERTID() instead of anoth...
[mailer.git] / inc / modules / admin / what-list_network_array_translation.php
index c8c16af5ef922ccbc2e07e034464bc16ec771334..1857f48a2edbc7c61273467ea10c79a4be4ddc54 100644 (file)
@@ -16,7 +16,7 @@
  * $Author::                                                          $ *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
- * Copyright (c) 2009 - 2011 by Mailer Developer Team                   *
+ * Copyright (c) 2009 - 2012 by Mailer Developer Team                   *
  * For more information visit: http://mxchange.org                      *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
@@ -61,7 +61,7 @@ if ($GLOBALS['network_display'] === false) {
        return;
 } // END - if
 
-// Do we have a network selected?
+// Is there a network selected?
 if (isGetRequestElementSet('network_id')) {
        // Get its data for template
        $networkData = getNetworkDataById(getRequestElement('network_id'));
@@ -89,7 +89,7 @@ if (isGetRequestElementSet('network_id')) {
        $result = SQL_QUERY_ESC("SELECT
        p.`network_array_id`,
        t.`network_type_id`,
-       t.`network_type_handle`,
+       t.`network_type_handler`,
        p.`network_array_index`,
        p.`sort`
 FROM
@@ -102,13 +102,13 @@ WHERE
        p.`network_id`=%s
        ".$ADD."
 ORDER BY
-       t.`network_type_handle` ASC,
+       t.`network_type_handler` ASC,
        p.`network_array_id` ASC",
                array(
                        bigintval(getRequestElement('network_id'))
                ), __FILE__, __LINE__);
 
-       // Do we have entries?
+       // Are there entries?
        if (!SQL_HASZERONUMS($result)) {
                // List all entries
                $OUT = '';