[Warning] strtotime(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone.

GET /fahrrad/topas-deluxe-2014

Line 302 in /home/fahrrdbs/2014.fahrrad-zimmermann.de/sapphire/core/HTTP.php

Source

293 
294 	/**
295 	 * Set the maximum age of this page in web caches, in seconds
296 	 */
297 	static function set_cache_age($age) {
298 		self::$cache_age = $age;
299 	}
300 
301 	static function register_modification_date($dateString) {
302 		$timestamp = strtotime($dateString);
303 		if($timestamp > self::$modification_date)
304 			self::$modification_date = $timestamp;
305 	}
306 
307 	static function register_modification_timestamp($timestamp) {
308 		if($timestamp > self::$modification_date)

Trace


Notice: Array to string conversion in /home/fahrrdbs/2014.fahrrad-zimmermann.de/sapphire/dev/Backtrace.php on line 134