From: Alexandre Emsenhuber Date: Mon, 21 Sep 2009 20:31:33 +0000 (+0000) Subject: Fix for r56551: Added missing "" when reducing indentation, passed validation... X-Git-Tag: 1.31.0-rc.0~39587 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/exercices/?a=commitdiff_plain;h=742ea6d366825d34c0ecffd4f1a1b33ea85df837;p=lhc%2Fweb%2Fwiklou.git Fix for r56551: Added missing "" when reducing indentation, passed validation with HTML 5, but not XHTML 1.0 Transitional :) --- diff --git a/includes/Skin.php b/includes/Skin.php index 845d4ac84e..60fe1cae04 100644 --- a/includes/Skin.php +++ b/includes/Skin.php @@ -988,7 +988,7 @@ END; } if ( $diff < 0 ) - $ret .= str_repeat( "\n", -$diff ) . "
  • \n"; + $ret .= str_repeat( "
  • \n", -$diff ) . "
  • \n"; elseif ( $diff == 0 ) $ret .= "
  • \n"; else