X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Flibs%2Fbooking_functions.php;h=4ef69c9eb0d5d98cd9f799c8431e3c900a6754b8;hp=957c46cf418f6751cc3e0a411771599c28beaeeb;hb=ee3a0b42f93de7676fca549c866c1c2e6f3f0576;hpb=c3b4eaf29946349ff058691db2dcb615a5379bb2 diff --git a/inc/libs/booking_functions.php b/inc/libs/booking_functions.php index 957c46cf41..4ef69c9eb0 100644 --- a/inc/libs/booking_functions.php +++ b/inc/libs/booking_functions.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 * @@ -40,26 +40,22 @@ if (!defined('__SECURITY')) { die(); } // END - if -// Add a record entry ("mode" can be add/sub!) -function addBookingRecord ($subject, $userid, $points, $mode) { +// Add a record entry ('pointsMode' can be add/sub!) +function addBookingRecord ($subject, $userid, $points, $pointsMode) { // Is the sql_patches updated? - if (isExtensionOlder('sql_patches', '0.5.7')) { + if (isExtensionInstalledAndOlder('sql_patches', '0.5.7')) { // Abort here return; } // END - if // Add record entry here - SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_user_book` (`userid`,`subject`,`mode`,`points`) VALUES(%s,'%s','%s',%s)", - array($userid, $subject, $mode, $points), __FUNCTION__, __LINE__); -} - -// Filter for adding booking record -function FILTER_ADD_BOOKING_RECORD ($data) { - // Add a record - addBookingRecord($data['subject'], $data['userid'], $data['points'], $data['mode']); - - // Return data - return $data; + SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_user_booking` (`userid`,`subject`,`points_mode`,`points`) VALUES (%s,'%s','%s',%s)", + array( + bigintval($userid), + $subject, + strtoupper($pointsMode), + $points + ), __FUNCTION__, __LINE__); } // [EOF]