rpicms

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

commit a0525ad283f86e96cb4287d08b99a615d5bbfe43
parent f629172ad1090a55649f5dfefa06a8d07c967562
Author: MTRNord <mtrnord1@gmail.com>
Date:   Tue, 24 Feb 2015 17:26:47 +0100

now it should do the work :)

Diffstat:
Mcore/update/update/update.php | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/core/update/update/update.php b/core/update/update/update.php @@ -233,7 +233,7 @@ class AutoUpdate */ public function setUpdateFile($updateFile) { - $this->_updateFile = $updateFile . $this->$_branch; + $this->_updateFile = $updateFile . $this->_branch; } /** @@ -364,7 +364,7 @@ class AutoUpdate // Check if cache is empty if ($versions === false) { - $updateFile = $this->_updateUrl . '/' . $this->_updateFile . $this->$_branch; + $updateFile = $this->_updateUrl . '/' . $this->_updateFile . $this->_branch; $this->_log->addDebug(sprintf('Get new updates from %s', $updateFile)); // Read update file from update server @@ -375,7 +375,7 @@ class AutoUpdate } // Parse update file - $updateFileExtension = substr(strrchr($this->_updateFile . $this->$_branch, '.'), 1); + $updateFileExtension = substr(strrchr($this->_updateFile . $this->_branch, '.'), 1); switch ($updateFileExtension) { case 'ini': $versions = parse_ini_string($update, true);