Allow one to configure profile.php filename in local_config.php take 2, a=chris

Chris Pollett [2013-01-06 08:Jan:th]
Allow one to configure profile.php filename in local_config.php take 2, a=chris
Filename
views/crawlstatus_view.php
diff --git a/views/crawlstatus_view.php b/views/crawlstatus_view.php
index b1e071bce..154d3dbb7 100755
--- a/views/crawlstatus_view.php
+++ b/views/crawlstatus_view.php
@@ -178,10 +178,11 @@ class CrawlstatusView extends View
         <?php
         if(isset($data['MOST_RECENT_URLS_SEEN']) &&
             count($data['MOST_RECENT_URLS_SEEN']) > 0) {
+            e('<pre>');
             foreach($data['MOST_RECENT_URLS_SEEN'] as $url) {
-                e("<pre>".htmlentities(wordwrap($url, 60, "\n", true)).
-                    "</pre>");
+                e(htmlentities(wordwrap($url, 60, "\n", true))."\n");
             }
+            e('</pre>');
         } else {
             e("<p>".tl('crawlstatus_view_no_recent_urls')."</p>");
         }
ViewGit