X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Flibs%2Fbooking_functions.php;h=02ac68ede6f52ab5ca04f47092ab0edd5e2b67a6;hb=d6417790061e18fc1a9770ff93bb4e9d106b2f6e;hp=7373071ba62e2b069a431970aae8b4c8a3b4d855;hpb=c9b17a86f4d62b50b8b1fbe6f9d88e6092430526;p=mailer.git diff --git a/inc/libs/booking_functions.php b/inc/libs/booking_functions.php index 7373071ba6..02ac68ede6 100644 --- a/inc/libs/booking_functions.php +++ b/inc/libs/booking_functions.php @@ -16,7 +16,7 @@ * $Author:: $ * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * - * Copyright (c) 2009, 2010 by Mailer Developer Team * + * Copyright (c) 2009 - 2011 by Mailer Developer Team * * For more information visit: http://www.mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -43,23 +43,19 @@ if (!defined('__SECURITY')) { // Add a record entry ("mode" can be add/sub!) function addBookingRecord ($subject, $userid, $points, $mode) { // 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`,`mode`,`points`) VALUES(%s,'%s','%s',%s)", + array( + bigintval($userid), + $subject, + $mode, + $points + ), __FUNCTION__, __LINE__); } // [EOF]