We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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>·</b> <a href="downloads.php?mode=download&cid=910&lid=' . $download_data[$j]['lid'] . '&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)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This can go:
and this below:
And finally:
(the part in the templates also can, obviously)
The text was updated successfully, but these errors were encountered: