MightyGorgon / icy_phoenix_plugins

Plugins for Icy Phoenix
http://www.icyphoenix.com
7 stars 6 forks source link

[Activity] activity.php contains code for phpbb-amod.com #30

Open vendethiel opened 9 years ago

vendethiel commented 9 years ago

This can go:

#==== Downloads Data Array ============================== |
if ($config['server_name'] == 'phpbb-amod.com')
{
    $q = "SELECT lid, url
            FROM " . $table_prefix . "downloads_downloads";
    $r = $db->sql_query($q);
    $download_data = $db->sql_fetchrowset($r);
}

and this below:


            for ($j = 0; $j <= sizeof($download_data); $j++)
            {
                if (eregi('http://phpbb-amod.com/games/games/' . $game_rows[$i]['game_name'] . '.zip', $download_data[$j]["url"]))
                {
                    $download_link = '<br /><b>&middot;</b> <a href="downloads.php?mode=download&amp;cid=910&amp;lid=' . $download_data[$j]['lid'] . '&amp;sid=' . $user->data['session_id'] . '" class="nav"><font color="#339933">Download This</font></a><br />';
                    break;
                }
            }

And finally:


                'DOWNLOAD_LINK' => $download_link,

(the part in the templates also can, obviously)