Version 1.0-beta2 ()
------------------------------------------------------------------------
+ * Fixed spartacus DB error on postgreSQL installations, thanks to
+ volkris! (garvinhicking)
+
* Added partial Tamil translation by Selva
* Fix Text_Wiki problems with UTF-8 charsets (garvinhicking)
foreach ($_GET as $key => $value) {
$_GET[$key] = input_get(INPUT_GET, $key, FILTER_UNSAFE_RAW);
}
+ foreach ($_COOKIE as $key => $value) {
+ $_COOKIE[$key] = input_get(INPUT_COOKIE, $key, FILTER_UNSAFE_RAW);
+ }
+ foreach ($_SESSION as $key => $value) {
+ $_SESSION[$key] = input_get(INPUT_SESSION, $key, FILTER_UNSAFE_RAW);
+ }
}
/*
if (!isset($data['stackable']) || empty($data['stackable'])) {
$data['stackable'] = '0';
}
+
+ if (!isset($data['last_modified'])) {
+ $data['last_modified'] = $lastModified;
+ }
// Only insert data keys that exist in the DB.
$insertdata = array();
'zh' => 'Simplified Chinese (GB2312)',
'cn' => 'Simplified Chinese (UTF-8)',
'ja' => 'Japanese',
- 'ko' => 'Korean');
+ 'ko' => 'Korean',
+ 'ta' => 'Tamil');
/* Available Calendars */
$serendipity['calendars'] = array('gregorian' => 'Gregorian',