http://xoops.org/modules/newbb/viewtopic.php?post_id=344404#forumpost344404
When I add an event in extcal the number of date will continue up to 40!
first of all in /include/common.php line +/- 132 **
Fixed in SVN and waiting for review
Log in to post a comment.
first of all in /include/common.php line +/- 132
**
*/
if (file_exists($file = $GLOBALS['xoops']->path('var/configs/xoopsconfig.php'))) {
$fileConfigs = include $file;
$xoopsConfig = array_merge($xoopsConfig, (array) $fileConfigs);
unset($fileConfigs, $file);
} else {
trigger_error('File Path Error: ' . 'var/configs/xoopsconfig.php' . ' does not exist.');
}
// ADD THIS
$xoops_server_timezone="Etc/GMT";
if ($xoopsConfig["server_TZ"]>0) {
$xoops_server_timezone .="+".$xoopsConfig["server_TZ"];
}
else{
$xoops_server_timezone .=$xoopsConfig["server_TZ"];
}
date_default_timezone_set($xoops_server_timezone);
Fixed in SVN and waiting for review
Fixed in SVN and waiting for review