Notice: DataObjectDecorator::extraDBFields() is deprecated. Please use extraStatics() instead. in /home/walczakf/public_html/ss/sapphire/core/model/DataObjectDecorator.php on line 53
GET /

[User Warning] Cookie 'bypassStaticCache' can't be set. The site started outputting was content at line 53 in /home/walczakf/public_html/ss/sapphire/core/model/DataObjectDecorator.php

GET /

Line 31 in /home/walczakf/public_html/ss/sapphire/core/Cookie.php

Source

22 		if(!headers_sent($file, $line)) {
23 			$expiry = $expiryDays > 0 ? time()+(86400*$expiryDays) : 0;
24 			$path = ($path) ? $path : Director::baseURL();
25 			// Versions of PHP prior to 5.2 do not support the $httpOnly value
26 			if(version_compare(phpversion(), 5.2, '<'))
27 				setcookie($name, $value, $expiry, $path, $domain, $secure);
28 			else
29 				setcookie($name, $value, $expiry, $path, $domain, $secure, $httpOnly);
30 		} else {
31 			if(self::$report_errors) user_error("Cookie '$name' can't be set. The site started outputting was content at line $line in $file", E_USER_WARNING);
32 		}
33 		$_COOKIE[$name] = $value;
34 	}
35 	
36 	/**
37 	 * Get a cookie variable

Trace