In order to see if there are some feed url submission by users direct into Waiting content block.
Open mainfile.php-> search for adminblock function and
after 10th line[within the function]:
Code:
$content = "<font class=\"content\">";add the following code:
Code:
$submited_feedurls = $db->sql_numrows($db->sql_query("SELECT * FROM ".$prefix."_multiheadlines_urls WHERE urls_active='0'"));$content .= "<strong><big>·</big></strong> <a href=\"admin.php?op=RSS\">"._MHSUBMISSIONS."</a>: $submited_feedurls<br>";
Next add and extra lang constant in at end of file language/lang-english.php [and others languages too]:
Code:
define("_MHSUBMISSIONS","MH Submissions");From now on you'll have into Waiting content block a position for Multiheadlines feed urls submited by users.











