Update of /cvsroot/phpicalendar/phpicalendar
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21534
Modified Files:
README index.php
Log Message:
Cookie vulnerability fixed.
Index: README
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/README,v
retrieving revision 1.93
retrieving revision 1.94
diff -C2 -d -r1.93 -r1.94
*** README 5 Oct 2005 01:07:40 -0000 1.93
--- README 25 Oct 2005 02:47:30 -0000 1.94
***************
*** 83,86 ****
--- 83,87 ----
--------
2.1
+ -Updated languages: Finnish
-RSS feeds display as previously indended.
-Updated languages: Finnish, Norwegian, French
***************
*** 88,91 ****
--- 89,93 ----
-Allows multiple calendar selection.
-Search box can be made to go away.
+ -Cookie vulnerbility fixed (credit: aScii)
-Fix for occasionally broken popups.
-Various bug fixes.
Index: index.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/index.php,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** index.php 6 May 2005 21:44:50 -0000 1.9
--- index.php 25 Oct 2005 02:47:30 -0000 1.10
***************
*** 11,15 ****
$default_view = "print.php";
} else {
! $default_view = "$default_view" . ".php";
}
/*header("Location: $default_view");*/
--- 11,20 ----
$default_view = "print.php";
} else {
! $check = array ('day', 'week', 'month');
! if (in_array($default_view, $check)) {
! $default_view = $default_view . '.php';
! } else {
! die;
! }
}
/*header("Location: $default_view");*/
|