diff options
-rw-r--r-- | include/smarty/libs/Smarty_Compiler.class.php | 2 | ||||
-rw-r--r-- | themes/default/template/picture.tpl | 5 |
2 files changed, 4 insertions, 3 deletions
diff --git a/include/smarty/libs/Smarty_Compiler.class.php b/include/smarty/libs/Smarty_Compiler.class.php index 1178b84d0..62a467bea 100644 --- a/include/smarty/libs/Smarty_Compiler.class.php +++ b/include/smarty/libs/Smarty_Compiler.class.php @@ -332,7 +332,7 @@ class Smarty_Compiler extends Smarty { /* strip all $text_blocks before the next '/strip' */ for ($j = $i + 1; $j < $for_max; $j++) { /* remove leading and trailing whitespaces of each line */ - $text_blocks[$j] = preg_replace('![\t ]*[\r\n]+[\t ]*!', '', $text_blocks[$j]); + $text_blocks[$j] = preg_replace('![\t ]*[\r\n]+[\t ]*!', ' ', $text_blocks[$j]); if ($compiled_tags[$j] == '{/strip}') { /* remove trailing whitespaces from the last text_block */ $text_blocks[$j] = rtrim($text_blocks[$j]); diff --git a/themes/default/template/picture.tpl b/themes/default/template/picture.tpl index 7713c7555..c75a60305 100644 --- a/themes/default/template/picture.tpl +++ b/themes/default/template/picture.tpl @@ -258,10 +258,11 @@ y.callService( if (e) e.innerHTML = rating.score; e = document.getElementById("ratingCount"); if (e) {ldelim} - if (rating.count == 1) + if (rating.count == 1) { e.innerHTML = "({'%d rate'|@translate|@escape:'javascript'})".replace( "%d", rating.count); - else + } else { e.innerHTML = "({'%d rates'|@translate|@escape:'javascript'})".replace( "%d", rating.count); + } {rdelim} {rdelim}{rdelim} ); {/footer_script} |