Use return instead of echo in the remaining core
Debug-messages still may use echo, and some functions in functions_image and trackback still use it to generate progress messages, which should get cleaned up as well but is not that urgent
This commit is contained in:
@@ -105,10 +105,7 @@ $user = serendipity_fetchUsers($serendipity['authorid']);
|
||||
$from = $user[0];
|
||||
$from['groups'] = serendipity_getGroups($serendipity['authorid']);
|
||||
unset($from['password']);
|
||||
ob_start();
|
||||
serendipity_printConfigTemplate($template, $from, true, false);
|
||||
$data['config'] = ob_get_contents();
|
||||
ob_get_clean();
|
||||
$data['config'] = serendipity_printConfigTemplate($template, $from, true, false);
|
||||
|
||||
|
||||
$add = array('internal' => true);
|
||||
|
||||
Reference in New Issue
Block a user