]> git.mxchange.org Git - mailer.git/blobdiff - inc/libs/profile_functions.php
Rewrote 'we' word a little, rewrote mail order to use SQL_INSERTID() instead of anoth...
[mailer.git] / inc / libs / profile_functions.php
index 2eddb8110e0b78905063ad0bc89ef523578f008a..2af462437b4eb67dd6f513c481a0d5c903b52edc 100644 (file)
@@ -16,8 +16,8 @@
  * $Author::                                                          $ *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
- * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
- * For more information visit: http://www.mxchange.org                  *
+ * 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 *
  * it under the terms of the GNU General Public License as published by *
@@ -40,13 +40,13 @@ if (!defined('__SECURITY')) {
        die();
 } // END - if
 
-// ----------------------------------------------------------------------------
+//-----------------------------------------------------------------------------
 //                             Wrapper functions
-// ----------------------------------------------------------------------------
+//-----------------------------------------------------------------------------
 
 // Getter for profile_update
 function getProfileUpdate () {
-       // Do we have cache?
+       // Is there cache?
        if (!isset($GLOBALS[__FUNCTION__])) {
                // Determine it
                $GLOBALS[__FUNCTION__] = getConfig('profile_update');
@@ -58,7 +58,7 @@ function getProfileUpdate () {
 
 // Getter for resend_profile_update
 function getResendProfileUpdate () {
-       // Do we have cache?
+       // Is there cache?
        if (!isset($GLOBALS[__FUNCTION__])) {
                // Determine it
                $GLOBALS[__FUNCTION__] = getConfig('resend_profile_update');
@@ -68,9 +68,9 @@ function getResendProfileUpdate () {
        return $GLOBALS[__FUNCTION__];
 }
 
-// Determines wether sending profile update notification is enabled
+// Determines whether sending profile update notification is enabled
 function isSendProfileUpdateEnabled() {
-       // Do we have cache?
+       // Is there cache?
        if (!isset($GLOBALS[__FUNCTION__])) {
                // Determine it
                $GLOBALS[__FUNCTION__] = (getConfig('send_prof_update') == 'Y');