xcript

Results 2 issues of xcript

As described here: http://forums.cibonfire.com/discussion/1020/timezone-with-dst-daylight-saving-time#Item_2 CI doesn't care about timezones with DST. And Bonfire does it equal. It is not possible to get the correct time for the timezone "Europe/Berlin" /...

Please add an UTF8 compatible validation rule for names. This should work: ``` public function name($str) { return ( ! preg_match("/^\p{L}[\p{L} .-]+$/u", $str)) ? FALSE : TRUE; } ```