Quote:
admincp/announcement.php
========================
FIND :
// display forum-specific announcements
foreach($forumcache AS $key => $forum)
{
AFTER ADD :
// Team Hack Start
if (!$forum['teamid']) {
// Team Hack End
FIND :
print_cells_row($cell, 0, '', -1);
}
print_table_footer();
}
print_cp_footer();
REPLACE WITH :
FIND :
// display forum-specific announcements
foreach($forumcache AS $key => $forum)
{
AFTER ADD :
// Team Hack Start
if (!$forum['teamid']) {
// Team Hack End
|
This leaves this -
Quote:
// display forum-specific announcements
foreach($forumcache AS $key => $forum)
{
// Team Hack Start
if (!$forum['teamid']) {
// Team Hack End
// Team Hack Start
if (!$forum['teamid']) {
// Team Hack End
|
I'm assuming the teamid only needs to be listed once and there is another error in filechanges.txt?