]> git.mxchange.org Git - mailer.git/blobdiff - inc/filter/booking_filter.php
Language id renamed, some network query amounts added
[mailer.git] / inc / filter / booking_filter.php
index 1b88ed5f1647a8fe24a5c9a704b5d02538dd9b41..0f957db16904d4fbc94ffe0f5a702e8b0daa8674 100644 (file)
@@ -17,7 +17,7 @@
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
  * Copyright (c) 2009 - 2011 by Mailer Developer Team                   *
- * For more information visit: http://www.mxchange.org                  *
+ * 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 *
@@ -41,14 +41,14 @@ if (!defined('__SECURITY')) {
 } // END - if
 
 // Filter for adding booking record
-function FILTER_ADD_BOOKING_RECORD ($data) {
+function FILTER_ADD_BOOKING_RECORD ($filterData) {
        // Add a record
        //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Called!');
-       addBookingRecord($data['subject'], $data['userid'], $data['points'], $data['mode']);
+       addBookingRecord($filterData['subject'], $filterData['userid'], $filterData['points'], $filterData['mode']);
 
        // Return data
        //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Done!');
-       return $data;
+       return $filterData;
 }
 
 // [EOF]