]> git.mxchange.org Git - mailer.git/blobdiff - inc/libs/booking_functions.php
Referal system refactured (and some parts fixed), wrapper function introduced:
[mailer.git] / inc / libs / booking_functions.php
index ad4601c0e4ed6d1d0a3d229f4b2f60c79d71ff48..ece61e39c9a14729303d691995014168b1fdb39b 100644 (file)
@@ -43,14 +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__);
+       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]