From 4bba0fa7de650c90237f0e1a5b745cbf48768124 Mon Sep 17 00:00:00 2001 From: Steve Sutton Date: Fri, 24 Feb 2017 15:30:35 -0500 Subject: [PATCH] Update the view file for the detail package page. Use nl2br call to get description to hold hard returns. --- views/front/packaging/detail.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/views/front/packaging/detail.html b/views/front/packaging/detail.html index 8f7e052..634ad02 100644 --- a/views/front/packaging/detail.html +++ b/views/front/packaging/detail.html @@ -107,9 +107,9 @@

{$package.title}

{if $package.descr} - {$package.descr} + {$package.descr|nl2br} {else if $package.short_descr} - {$package.short_descr} + {$package.short_descr|nl2br} {/if}
-- 2.17.1