diff options
author | Morris Jobke <hey@morrisjobke.de> | 2016-11-15 23:13:53 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-15 23:13:53 +0100 |
commit | cb97cf559b8f641772cfd6e3126ecd5a94aac245 (patch) | |
tree | 07754060b733e60001abe65224eedcd3f0a76753 /lib/public | |
parent | 28babd319b0322a06d5019f373c7ce6d9edf61dd (diff) | |
parent | 7a8bf6ea263d339a47239a2e0b934f6b79b9bbec (diff) | |
download | nextcloud-server-cb97cf559b8f641772cfd6e3126ecd5a94aac245.tar.gz nextcloud-server-cb97cf559b8f641772cfd6e3126ecd5a94aac245.zip |
Merge pull request #2144 from nextcloud/fix_1303
Do not cache version info in the session
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/Util.php | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/public/Util.php b/lib/public/Util.php index 08661fd88ca..8a7c8997613 100644 --- a/lib/public/Util.php +++ b/lib/public/Util.php @@ -83,7 +83,6 @@ class Util { */ public static function setChannel($channel) { //Flush timestamp to reload version.php - \OC::$server->getSession()->set('OC_Version_Timestamp', 0); \OC::$server->getAppConfig()->setValue('core', 'OC_Channel', $channel); \OC::$server->getConfig()->setSystemValue('updater.release.channel', $channel); } |