mailer project continued:
[mailer.git] / inc / libs / order_functions.php
index f6da85ea7949b5bf28be1dc881b452216ca71d88..5aa1383fe84093a76929087071203c8dcc6b61d7 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 *
@@ -43,6 +43,7 @@ if (!defined('__SECURITY')) {
 // Generates a selection list for mail order
 function addOrderSelectionOptions ($default) {
        // Currenty the list is hardcoded...
+       // @TODO Move this array into a filter
        $LIST = array('userid', 'zip', 'country', 'email', 'birth_year', 'last_online', 'ref_clicks', 'total_logins', 'mail_orders');
        $OUT = '';
        foreach ($LIST as $item) {
@@ -58,7 +59,7 @@ function addOrderSelectionOptions ($default) {
                } // END - if
 
                // Add option line
-               $OUT .= '<option value="' . $item . '"' . $selected . '>{--ADMIN_ORDER_SELECT_COLUMN_' . strtoupper($item) . '--}</option>';
+               $OUT .= '<option value="' . $item . '"' . $selected . '>{--ADMIN_CONFIG_ORDER_SELECT_COLUMN_' . strtoupper($item) . '--}</option>';
        } // END - foreach
 
        // Return the output
@@ -81,7 +82,7 @@ function getOrderMultiPage () {
        return $GLOBALS[__FUNCTION__];
 }
 
-// Determines wether 'order_multi_page' is set to 'Y'
+// Determines whether 'order_multi_page' is set to 'Y'
 function isOrderMultiPageEnabled () {
        // Do we have cache?
        if (!isset($GLOBALS[__FUNCTION__])) {