From d0b08245e1c37d55d7c0e180013588a1fc4d24fa Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Sun, 7 Jan 2007 12:55:28 +0000 Subject: [PATCH] fix missing , quite visible running with tidy disabled on mediawiki messages --- includes/SpecialVersion.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/includes/SpecialVersion.php b/includes/SpecialVersion.php index c7ccf57f79..dba694c058 100644 --- a/includes/SpecialVersion.php +++ b/includes/SpecialVersion.php @@ -195,7 +195,8 @@ class SpecialVersion { foreach ($myWgHooks as $hook => $hooks) $ret .= "$hook" . $this->listToText( $hooks ) . "\n"; - + + $ret .= ''; return $ret; } else return ''; -- 2.20.1