X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=inline;f=inc%2Flibs%2Fbooking_functions.php;h=758dc7d847407294c885a88c041bca3705f3c2d9;hb=99966a712b3b3d8b521524762e153353d1d20bd4;hp=57741ef14aab2892d8804760b2fb85f062ab826a;hpb=2df9f7a53f8b1dd5164f87824a324ccb3b6634cb;p=mailer.git diff --git a/inc/libs/booking_functions.php b/inc/libs/booking_functions.php index 57741ef14a..758dc7d847 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 - 2012 by Mailer Developer Team * + * Copyright (c) 2009 - 2013 by Mailer Developer Team * * For more information visit: http://mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -41,19 +41,20 @@ if (!defined('__SECURITY')) { } // END - if // Add a record entry ('pointsMode' can be add/sub!) -function addBookingRecord ($subject, $userid, $points, $pointsMode) { - // Is the sql_patches updated? +function addBookingRecord ($subject, $userid, $points, $pointsMode, $accountType) { + // Is the ext-sql_patches updated? if (isExtensionInstalledAndOlder('sql_patches', '0.5.7')) { // Abort here return; } // END - if // Add record entry here - SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_user_booking` (`userid`, `subject`, `points_mode`, `points`) VALUES (%s,'%s','%s',%s)", + sqlQueryEscaped("INSERT INTO `{?_MYSQL_PREFIX?}_user_booking` (`userid`, `subject`, `points_mode`, `points_account_type`, `points`) VALUES (%s, '%s', '%s', '%s', %s)", array( bigintval($userid), $subject, strtoupper($pointsMode), + strtoupper($accountType), $points ), __FUNCTION__, __LINE__); }