]> git.mxchange.org Git - mailer.git/blobdiff - inc/session-functions.php
Generic index.php is now masking backtrace data
[mailer.git] / inc / session-functions.php
index ce329769dce456e9cbb588edd375e40fe40398bd..17eb30ed1d3ecf44c5e040970975aa50251fd70a 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /************************************************************************
- * MXChange v0.2.1                                    Start: 02/28/2009 *
- * ===============                              Last change: 02/28/2009 *
+ * Mailer v0.2.1-FINAL                                Start: 02/28/2009 *
+ * ===================                          Last change: 02/28/2009 *
  *                                                                      *
  * -------------------------------------------------------------------- *
  * File              : session-functions.php                            *
@@ -47,7 +47,7 @@ function setSession ($var, $value) {
        if (getOutputMode() == 1) return true;
 
        // Trim value and session variable
-       $var = trim(SQL_ESCAPE($var)); $value = trim($value);
+       $var = trim(secureString($var)); $value = trim($value);
 
        // Is the session variable set?
        if (('' . $value . '' == '') && (isSessionVariableSet($var))) {
@@ -108,7 +108,6 @@ function destroyAdminSession ($destroy = true) {
        setSession('admin_login', '');
        setSession('admin_md5'  , '');
        setSession('admin_last' , '');
-       setSession('admin_to'   , '');
 
        // Destroy session and return status
        if ($destroy) {