Merge pull request #90 from atans/patch-1

Fix typo
This commit is contained in:
Dominik Liebler 2014-05-14 13:59:47 +02:00
commit abd2b8e4a3

View File

@ -18,6 +18,6 @@ class Picture extends BasePicture
*/
public function render()
{
return sprintf('<img src="%s" title="$s"/>', $this->path, $this->name);
return sprintf('<img src="%s" title="%s"/>', $this->path, $this->name);
}
}