X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Ffilter%2Fbooking_filter.php;h=0f957db16904d4fbc94ffe0f5a702e8b0daa8674;hb=7a27c44db48d021c1e54a76916914ef41ff49372;hp=4fb2b207abca5cd8a06c8d8289a7770ad1dbc89f;hpb=8e75638e5249c1aa9f8f98af118f89108c7eeebc;p=mailer.git diff --git a/inc/filter/booking_filter.php b/inc/filter/booking_filter.php index 4fb2b207ab..0f957db169 100644 --- a/inc/filter/booking_filter.php +++ b/inc/filter/booking_filter.php @@ -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,12 +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 - addBookingRecord($data['subject'], $data['userid'], $data['points'], $data['mode']); + //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Called!'); + addBookingRecord($filterData['subject'], $filterData['userid'], $filterData['points'], $filterData['mode']); // Return data - return $data; + //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Done!'); + return $filterData; } // [EOF]