From 0904bb2c309bfd4a7f7f3a7f9698385d3a9e3e6b Mon Sep 17 00:00:00 2001 From: Gabriel Wicke Date: Fri, 9 Apr 2004 15:01:14 +0000 Subject: [PATCH] image html src back on one line to help parser --- includes/Skin.php | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/includes/Skin.php b/includes/Skin.php index 63229ebf1f..93fc975a97 100644 --- a/includes/Skin.php +++ b/includes/Skin.php @@ -1562,11 +1562,11 @@ class Skin { { $s = str_replace( "$1", $name, wfMsg("missingimage") ); } else { - $s = "\n \n" . - " \"{$alt}\"\n "; + $s = "" . + "\"{$alt}\""; } if ( "" != $align ) { - $s = "
{$s}\n
"; + $s = "
{$s}\n
"; } return $prefix.$s.$postfix; } @@ -1708,14 +1708,14 @@ class Skin { if ( $thumbUrl == "" ) { $s .= str_replace( "$1", $name, wfMsg("missingimage") ); } else { - $s .= "\n".' '."\n". - ' '.$alt.'' ."\n". - ' ' ."\n". - ' '.$more.' '."\n"; - } - $s .= ' '.$label."

\n"; + $s .= ''. + ''.$alt.''. + ' '. + ''.$more.' '; + } + $s .= ' '.$label."

\n"; return $s; } -- 2.20.1