rpicms

A CMS for the Raspberry Pi
git clone git://archive.git.mtrnord.blog/RpicmsTeam/rpicms.git
Log | Files | Refs | README | LICENSE

commit d31e2c298ad3d769f5bf1f48ef2637a22e33e697
parent 410170b1f867db51aeaa0f37cde7475347f9092f
Author: MTRNord <mtrnord1@gmail.com>
Date:   Sat, 13 Dec 2014 19:00:22 +0100

the last bug seems mysterios :/

Diffstat:
Mcore/backend/admin/blog/newpost.php | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/core/backend/admin/blog/newpost.php b/core/backend/admin/blog/newpost.php @@ -1,6 +1,6 @@ <?php -$uri = $_SERVER['HTTP_HOST']; -$ssl = $_SERVER['HTTPS']; +$uri = (string)$_SERVER['HTTP_HOST']; +$ssl = (string)$_SERVER['HTTPS']; if (empty($ssl)) { $http = "http://"; }else{