* some small undefined variable fix

This commit is contained in:
slawkens1 2017-08-28 20:20:42 +02:00
parent fe8b0cd944
commit 27e490912b

View File

@ -28,7 +28,7 @@ else
$_content = $notepad_content;
}
echo $twig->render('admin.notepad.html', array('content' => $_content));
echo $twig->render('admin.notepad.html', array('content' => isset($_content) ? $_content : null));
class Notepad
{