commit a94fac99eb926069908c6822ab8d28e75e7888bd
parent a7892202bd401c878792539660ad52610e65f739
Author: markseu <mark2011@mayberg.se>
Date: Tue, 6 Dec 2016 11:51:39 +0100
System update (for Ulrike)
Diffstat:
3 files changed, 3 insertions(+), 4 deletions(-)
diff --git a/system/plugins/webinterface.css b/system/plugins/webinterface.css
@@ -1,4 +1,4 @@
-/* Yellow web interface 0.6.15 */
+/* Yellow web interface 0.6.16 */
.yellow-bar { position:relative; overflow:hidden; height:2em; margin-bottom:10px; }
.yellow-bar-left { display:block; float:left; }
diff --git a/system/plugins/webinterface.js b/system/plugins/webinterface.js
@@ -4,7 +4,7 @@
// Yellow API
var yellow =
{
- version: "0.6.15",
+ version: "0.6.16",
action: function(action) { yellow.webinterface.action(action, "none"); },
onLoad: function() { yellow.webinterface.loadInterface(); },
onClick: function(e) { yellow.webinterface.hidePanesOnClick(yellow.toolbox.getEventElement(e)); },
diff --git a/system/plugins/webinterface.php b/system/plugins/webinterface.php
@@ -5,7 +5,7 @@
// Web interface plugin
class YellowWebinterface
{
- const VERSION = "0.6.15";
+ const VERSION = "0.6.16";
var $yellow; //access to API
var $response; //web interface response
var $users; //web interface users
@@ -530,7 +530,6 @@ class YellowWebinterface
if($statusCode!=200)
{
$this->yellow->page->statusCode = 500;
- $this->yellow->page->set("pageError", "Can't check for updates on this server!");
$this->response->status = "error";
}
}