Changeset 35
- Timestamp:
- 10/25/06 17:11:21 (16 years ago)
- Location:
- dev/common
- Files:
-
- 3 modified
Legend:
- Unmodified
- Added
- Removed
-
dev/common/kill_export_csv.php
r34 r35 12 12 require_once( "class.alliance.php" ); 13 13 require_once( "class.killlist.php" ); 14 require_once( "admin_menu.php" ); 14 15 15 16 $plt_id = $_GET[plt_id]; … … 58 59 $html .= "Copy content of textbox to another location (eg. a textfile)"; 59 60 $page->setContent( $html ); 61 $page->addContext( $menubox->generate() ); 60 62 $page->generate(); 61 63 ?> -
dev/common/kill_export_search.php
r34 r35 11 11 require_once( "db.php" ); 12 12 require_once( "globals.php" ); 13 require_once( "admin_menu.php" ); 13 14 14 15 $page = new Page( "Administration - Export searcher" ); … … 55 56 56 57 $page->setContent( $html ); 58 $page->addContext( $menubox->generate() ); 57 59 $page->generate(); 58 60 ?> -
dev/common/kill_import_csv.php
r34 r35 10 10 require_once( "class.parser.php" ); 11 11 require_once( "class.killlist.php" ); 12 require_once( "admin_menu.php" ); 12 13 13 14 $page = new Page( "Administration - Killmail import" ); … … 70 71 71 72 $page->setContent( $html ); 73 $page->addContext( $menubox->generate() ); 72 74 $page->generate(); 73 75 ?>