-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathktai_normal.php
43 lines (35 loc) · 1.34 KB
/
ktai_normal.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<?php
/* ========================================================================
*
* @license This source file is subject to version 3.01 of the PHP license,
* that is available at http://www.php.net/license/3_01.txt
* If you did not receive a copy of the PHP license and are unable
* to obtain it through the world-wide-web, please send a note to
* [email protected] so we can mail you a copy immediately.
*
* @category Application of MyNETS
* @project OpenPNE UsagiProject 2006-2007
* @package MyNETS
* @author UsagiProject <[email protected]>
* @copyright 2006-2007 UsagiProject <author member ad http://usagi.mynets.jp/member.html>
* @version MyNETS,v 1.0.0
* @since File available since Release 1.0.0 Nighty
* @chengelog [2007/02/17] Ver1.1.0Nighty package
* ========================================================================
*/
/*
* @copyright 2005-2006 OpenPNE Project
* @link http://www.tejimaya.com/openpne.shtml
*/
// Left for compatibility
require_once './config.inc.php';
require_once OPENPNE_WEBAPP_DIR . '/init.inc';
$q = $_GET;
if (!empty($q['p'])) {
$action = 'page_o_' . $q['p'];
unset($q['p']);
}
unset($q['m']);
$_REQUEST['url'] = openpne_gen_url('ktai', $action, $q);
openpne_forward('ktai', 'page', 'o_url_changed');
?>