- Timestamp:
- 04/02/07 08:49:40 (15 years ago)
- Location:
- dev
- Files:
-
- 3 modified
Legend:
- Unmodified
- Added
- Removed
-
dev/common/about.php
r190 r198 2 2 require_once('common/includes/class.page.php'); 3 3 require_once('common/includes/class.ship.php'); 4 require_once('common/includes/globals.php'); 4 5 5 6 $page = new Page('About'); … … 23 24 // Please leave the information on the next line as is so that other people can easily find the EVE-Dev website. 24 25 // Remember to share any modifications to the EVE-Dev Killboard. 25 $html .= "This is the EVE Development Network Killboard running version 1.3 (Tigerduck Memorial Edition), created for <a href=\"http://www.eve-online.com/\">EVE Online</a> corporations and alliances.<br/>" 26 ."Based on the EVE-Killboard created by <a href=\"mailto:rig0r@eve-killboard.net\">rig0r</a> it is now developed and maintained by the <a href=\"http://www.eve-dev.net/\">EVE-Dev</a> group.<br/>" 26 $html .= "This is the EVE Development Network Killboard running version ".KB_VERSION." rev ".SVN_REV.", created for <a href=\"http://www.eve-online.com/\">EVE Online</a> corporations and alliances. Based on the EVE-Killboard created by <a href=\"mailto:rig0r@eve-killboard.net\">rig0r,</a> it is now developed and maintained by the <a href=\"http://www.eve-dev.net/\">EVE-Dev</a> group.<br/>" 27 27 ."All EVE graphics and data used are property of <a href=\"http://www.ccpgames.com/\">CCP</a>.<br/><br/>"; 28 28 $html .= '<a href="http://www.eve-dev.net/" target="_blank"><img src="http://www.eve-dev.net/e107_images/evedev_button.png" border="0"/></a><br/><br/>'; -
dev/common/includes/globals.php
r190 r198 1 1 <?php 2 2 // current subversion revision 3 preg_match('/\$Re'.'vision: (.*?) \$/', '$Revision: 1 77 $', $match);3 preg_match('/\$Re'.'vision: (.*?) \$/', '$Revision: 197 $', $match); 4 4 define('SVN_REV', $match[1]); 5 5 6 6 // current version: major.minor.sub 7 7 // unpair numbers for minor = development version 8 define('KB_VERSION', '1.3.0 ');8 define('KB_VERSION', '1.3.0 (Tigerduck Memorial Edition)'); 9 9 10 10 // set the running-server for id-syncs here -
dev/mods/mail_forward/init.php
r190 r198 6 6 function handler($object) 7 7 { 8 if (config::get('forward_active') == false) 9 { 10 return; 11 } 8 12 require_once('common/includes/class.http.php'); 9 13