Merge pull request #2555 from laf/notifications

Replace \n with <br />
This commit is contained in:
Daniel Preussker
2015-12-04 09:57:53 +00:00

View File

@@ -103,7 +103,7 @@ $notifications = new ObjCache('notifications');
<div class="row"> <div class="row">
<div class="col-md-12"> <div class="col-md-12">
<blockquote> <blockquote>
<p><?php echo $notif['body']; ?></p> <p><?php echo preg_replace('/\\\n/','<br />', $notif['body']); ?></p>
<footer>Source: <code><?php echo $notif['source']; ?></code></footer> <footer>Source: <code><?php echo $notif['source']; ?></code></footer>
</blockquote> </blockquote>
</div> </div>
@@ -133,7 +133,7 @@ $notifications = new ObjCache('notifications');
<div class="row"> <div class="row">
<div class="col-md-12"> <div class="col-md-12">
<blockquote> <blockquote>
<p><?php echo $notif['body']; ?></p> <p><?php echo preg_replace('/\\\n/','<br />', $notif['body']); ?></p>
<footer>Source: <code><?php echo $notif['source']; ?></code></footer> <footer>Source: <code><?php echo $notif['source']; ?></code></footer>
</blockquote> </blockquote>
</div> </div>