fix return value of method

This commit is contained in:
Georg Ehrke 2013-08-23 23:27:36 +02:00
parent 13e34649bf
commit 58c727a495

View file

@ -444,7 +444,8 @@ class Preview {
* @return void
*/
public function show() {
return $this->showPreview();
$this->showPreview();
return;
}
/**