Hello application interface (people not tools update)

This commit is contained in:
markseu 2013-05-13 11:13:29 +02:00
parent 807aa2ef25
commit 8a53608454
3 changed files with 5 additions and 5 deletions

View file

@ -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?
----------------------

View file

@ -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)
{

View file

@ -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);