Updated plugins, website features can be added via command line
This commit is contained in:
parent
98bfc65e0a
commit
8ce84205c7
1 changed files with 2 additions and 2 deletions
|
@ -4,7 +4,7 @@
|
|||
// This file may be used and distributed under the terms of the public license.
|
||||
|
||||
class YellowUpdate {
|
||||
const VERSION = "0.7.18";
|
||||
const VERSION = "0.7.19";
|
||||
public $yellow; //access to API
|
||||
public $updates; //number of updates
|
||||
|
||||
|
@ -238,7 +238,7 @@ class YellowUpdate {
|
|||
public function showSoftware() {
|
||||
list($statusCode, $dataLatest) = $this->getSoftwareVersion(true, true);
|
||||
foreach ($dataLatest as $key=>$value) {
|
||||
list($version, $url, $description) = explode(",", $value);
|
||||
list($version, $url, $description) = explode(",", $value, 3);
|
||||
echo "$key: $description\n";
|
||||
}
|
||||
if ($statusCode!=200) echo "ERROR checking features: ".$this->yellow->page->get("pageError")."\n";
|
||||
|
|
Loading…
Add table
Reference in a new issue