X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Flibs%2Fbooking_functions.php;h=17f72513fe37aa36ca3cf678da20ee7f3c1e6cb0;hp=7d87db6e22cacb9723a67890c5345d79e59aa0cd;hb=e3934352dffa6eb9da59a137ae1a9414e5b4d80b;hpb=09f5758c42a33a56bdd461c946ffe759a59c54aa diff --git a/inc/libs/booking_functions.php b/inc/libs/booking_functions.php index 7d87db6e22..17f72513fe 100644 --- a/inc/libs/booking_functions.php +++ b/inc/libs/booking_functions.php @@ -14,12 +14,10 @@ * $Date:: $ * * $Tag:: 0.2.1-FINAL $ * * $Author:: $ * - * Needs to be in all Files and every File needs "svn propset * - * svn:keywords Date Revision" (autoprobset!) at least!!!!!! * * -------------------------------------------------------------------- * * 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 - 2011 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 * @@ -45,20 +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']); + 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]