Posted by yelvington on March 15, 2005 at 4:06pm
| Project: | Mass URL |
| Version: | master |
| Component: | Code |
| Category: | bug report |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | active |
Issue Summary
/blog/feed is not found after this module is installed.
I added the following at the top of function _mass_url_user_page() , right after the $url_username assignment.
<?php
if (($page_type == 'blog') && ($url_username == 'feed'))
{
blog_feed_last();
return;
}
?>This fixed the problem but may not be the way you want to do it.