This file looks large and may slow your browser down if we attempt
to syntax highlight it, so we are showing it without any
pretty colors.
Highlight
it anyway.
| 1 |
<?php
|
| 2 |
/**
|
| 3 |
* File functions:
|
| 4 |
* Donating
|
| 5 |
*
|
| 6 |
* @name : donate.php
|
| 7 |
* @copyright : (C) 207 Orodlin Team based on Gamers-Fusion ver 2.5 and Vallheru Engine
|
| 8 |
* @author : lethal2 (l3thal2[at]gmail.com)
|
| 9 |
* @version :
|
| 10 |
* @since : 18.05.2007
|
| 11 |
*
|
| 12 |
//
|
| 13 |
// $Id: index.php 835 2006-11-22 17:40:22Z thindil $
|
| 14 |
|
| 15 |
*/ |
| 16 |
require_once ('includes/config.php'); |
| 17 |
require_once ('includes/main/base.php'); |
| 18 |
require_once ('includes/getlang.php'); |
| 19 |
GetLang (); |
| 20 |
GetLoc ('mainpage'); |
| 21 |
GetLoc ('donate'); |
| 22 |
|
| 23 |
GameCloseRoutine (); |
| 24 |
|
| 25 |
require_once ('includes/main/record.php'); |
| 26 |
require_once ('includes/main/counter.php'); |
| 27 |
require_once ('includes/main/online.php'); |
| 28 |
require_once ('includes/main/usersever.php'); |
| 29 |
require_once ('includes/right.php'); |
| 30 |
|
| 31 |
|
| 32 |
|
| 33 |
$smarty -> assign( array ('Pagetitle' => DONATE_TITLE));
|
| 34 |
$smarty -> display('donate.tpl');
|
| 35 |
$db -> Close();
|
| 36 |
?>
|