A lot rewrites from double-quote to single-quote, some fixes for extension handling...
[mailer.git] / inc / libs / order_functions.php
index 5b6181940a99d7809b67fe7615f09fdf6edec117..d36639a046c7f5312f989759a3742315b5488b90 100644 (file)
@@ -44,10 +44,10 @@ if (!defined('__SECURITY')) {
 
 function ORDER_SELECT_OPTION_LIST($default) {
        // Currenty the list is hardcoded...
-       $LIST = array("userid", "zip", "country", "email", "birth_year", "last_online", "ref_clicks", "total_logins", "mail_orders");
-       $OUT = "";
+       $LIST = array('userid', "zip", 'country', 'email', "birth_year", "last_online", "ref_clicks", "total_logins", "mail_orders");
+       $OUT = '';
        foreach ($LIST as $item) {
-               $selected = "";
+               $selected = '';
                if ($item == $default) $selected = " selected=\"selected\"";
                $OUT .= "<option value=\"".$item."\"".$selected.">{--ORDER_SELECT_COLUMN_".strtoupper($item)."--}</option>\n";
        }