jemmy655 / sweetcron

Automatically exported from code.google.com/p/sweetcron
0 stars 0 forks source link

Feature Request: Show Feed URL in Feeds section #38

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
I personally think it would be useful to be able to see the URL of the feed in 
the Feeds section in 
the admin interface.

I have added this myself, please see my attached feeds.php from 
system/application/views/admin/

Original issue reported on code.google.com by admin%so...@gtempaccount.com on 29 Aug 2008 at 3:27

Attachments:

GoogleCodeExporter commented 8 years ago
This worked like a charm.

The changes are on line 12 of system/application/views/admin/feeds.php

Original
<p class="item_count"><?php echo $feed->item_count?> items.</p>

Modified
<p class="item_count"><?php echo $feed->item_count?> items. <a href="<?php echo
$feed->feed_url?>">Feed URL</a></p>

Thanks!

Original comment by shim...@gmail.com on 3 Sep 2008 at 2:46