blob: 54ced7ba81cb02ae1dec9e5353e70a6b616c7cb3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<?php
/**
* $Header: /cvsroot/bitweaver/_bit_liberty/ajax_edit_storage.php,v 1.4 2007/11/18 12:00:30 lsces Exp $
* @version $Revision: 1.4 $
* @package liberty
* @subpackage functions
*/
/**
* required setup
*/
global $gContent;
include_once( '../bit_setup_inc.php' );
// load the content
include_once( LIBERTY_PKG_PATH.'lookup_content_inc.php' );
// process the information
include_once( LIBERTY_PKG_PATH.'edit_storage_inc.php' );
// fetch the content of the page to display
$gBitSystem->setFormatHeader( 'center_only' );
$gBitSystem->display( 'bitpackage:liberty/edit_storage_list.tpl' );
?>
|