rpicms

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

commit a1f123f8bea9f2500a8c47aa3bef1c90f81c904d
parent c953044a1bdf5113782d279e93883ac466ceed67
Author: MTRNord <mtrnord1@gmail.com>
Date:   Sat, 20 Dec 2014 20:39:31 +0100

use http insted of https

Diffstat:
Mcore/update/update/index.php | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/update/update/index.php b/core/update/update/index.php @@ -8,7 +8,7 @@ require('update.php'); $update = new AutoUpdate(true); $update->currentVersion = 1; //Must be an integer - you can't compare strings -$update->updateUrl = 'https://media.nordgedanken.de/rpicms/update/server'; //Replace with your server update directory +$update->updateUrl = 'http://media.nordgedanken.de/rpicms/update/server'; //Replace with your server update directory //Check for a new update $latest = $update->checkUpdate();