commit 8a5360845471379e0d28ce1c4c58dd7cb6cfdecf
parent 807aa2ef2546c9163f79287d05e6507db7133299
Author: markseu <mark2011@mayberg.se>
Date: Mon, 13 May 2013 11:13:29 +0200
Hello application interface (people not tools update)
Diffstat:
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/README.md b/README.md
@@ -1,7 +1,7 @@
Yellow
======
-Yellow is a CMS for people, it's web-based and flat-file.
+Yellow is a CMS for people who make websites.
How do I install this?
----------------------
diff --git a/system/core/core.php b/system/core/core.php
@@ -404,7 +404,7 @@ class Yellow_PageCollection extends ArrayObject
$this->baseLocation = $baseLocation;
$this->location = $location;
$this->toolbox = $toolbox;
- }
+ }
// Filter page collection by meta data
function filter($key, $value, $exactMatch = true)
@@ -635,8 +635,8 @@ class Yellow_Toolbox
}
if(!$found && !empty($args[1]) && !empty($args[2]))
{
- if(!empty($locationArgs)) $locationArgs .= '/';
- $locationArgs .= "$args[1]:$args[2]";
+ if(!empty($locationArgs)) $locationArgs .= '/';
+ $locationArgs .= "$args[1]:$args[2]";
}
if($encodeArgs)
{
diff --git a/system/core/core_markdown.php b/system/core/core_markdown.php
@@ -53,7 +53,7 @@ class Yellow_MarkdownExtraParser extends MarkdownExtra_Parser
$result = "<img src=\"".$this->encodeAttribute($src)."\"";
if($width && $height) $result .= " width=\"$width\" height=\"$height\"";
if(isset($alt)) $result .= " alt=\"".$this->encodeAttribute($alt)."\"";
- if(isset($title)) $result .= " title=\"".$this->encodeAttribute($title)."\"";
+ if(isset($title)) $result .= " title=\"".$this->encodeAttribute($title)."\"";
$result .= $this->empty_element_suffix;
return $this->hashPart($result);