Closed (fixed)
Project:
Airplane Reservation System
Version:
5.x-1.0
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
30 Mar 2008 at 11:31 UTC
Updated:
9 Jul 2009 at 10:50 UTC
On line 171 parameter 6 on function call should be of type long instead string.
This line
$starttag_stamp = mktime(0, 0, 0, $pieces[1] , $pieces[2], $pieces[0]);
should be replaced by
$starttag_stamp = mktime(0, 0, 0, $pieces[1], $pieces[2], intval($pieces[0]));
Comments
Comment #1
jochen wendebaum commentedI just released a new reservation system for Drupal 6, based on this module, and rewritten completly from scracht.
http://drupal.org/project/simple_reservation
The "airplane reservation system" won't be touched anymore in the future, all efforts go into this new project.