mikuli.cz

:)
git clone https://git.sr.ht/~ashymad/mikuli.cz
Log | Files | Refs

commit 8a69cbb9d66604278edc0b6e1819662c06991f39
parent b4a8aec53325a73e9210b38724752b87de1946d8
Author: markseu <mark2011@mayberg.se>
Date:   Thu, 10 Jul 2014 11:54:14 +0200

Hello command line (summer remix)

Diffstat:
MREADME.md | 2+-
Msystem/core/core-commandline.php | 4++--
2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/README.md b/README.md @@ -1,6 +1,6 @@ Yellow 0.3.7 ============ -Yellow is for people who make websites. [Visit website](http://datenstrom.se/yellow/). +Yellow is for people who make websites. [Visit website](http://datenstrom.se/yellow). [![Status](https://travis-ci.org/markseu/yellowcms.svg)](https://travis-ci.org/markseu/yellowcms) diff --git a/system/core/core-commandline.php b/system/core/core-commandline.php @@ -5,7 +5,7 @@ // Command line core plugin class YellowCommandline { - const Version = "0.3.4"; + const Version = "0.3.5"; var $yellow; //access to API var $content; //number of content pages var $media; //number of media files @@ -49,7 +49,7 @@ class YellowCommandline // Show available commands function helpCommand() { - echo "Yellow command line ".YellowCommandline::Version."\n"; + echo "Yellow ".Yellow::Version."\n"; foreach($this->getCommandHelp() as $line) echo (++$lineCounter>1 ? " " : "Syntax: ")."yellow.php $line\n"; return 200; }