X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Flibs%2Fbooking_functions.php;h=4297becaeb54847e85bdb52d6863595ca015c261;hb=e1d636846bafc8ae71855595a2a2843463025e26;hp=bb3aac762f669b191edf327e5766669d51263e93;hpb=5bdeaf8b452206598b6c6cd4f941145b11a0eccc;p=mailer.git diff --git a/inc/libs/booking_functions.php b/inc/libs/booking_functions.php index bb3aac762f..4297becaeb 100644 --- a/inc/libs/booking_functions.php +++ b/inc/libs/booking_functions.php @@ -10,7 +10,12 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Funktionen fuer booking-Erweiterung * * -------------------------------------------------------------------- * - * * + * $Revision:: $ * + * $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 - 2008 by Roland Haeder * * For more information visit: http://www.mxchange.org * @@ -33,7 +38,7 @@ // Some security stuff... if (!defined('__SECURITY')) { - $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php"; + $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php'; require($INC); } @@ -41,14 +46,14 @@ if (!defined('__SECURITY')) { // Add a record entry ("mode" can be add/sub!) function ADD_BOOKING_RECORD ($subject, $uid, $points, $mode) { // Is the sql_patches updated? - if (EXT_VERSION_IS_OLDER("sql_patches", "0.5.7")) { + if (EXT_VERSION_IS_OLDER('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($uid, $subject, $mode, $points), __FILE__, __LINE__); + array($uid, $subject, $mode, $points), __FUNCTION__, __LINE__); } // [EOF]