Last change
on this file since 770 was
757,
checked in by toemon, 13 years ago
|
ConfigFromXoopsクラスを廃止し、modInfoクラスを使用するように変更
WP2.2以下で使用するテンプレートold_templateの廃止
|
File size:
1.1 KB
|
Rev | Line | |
---|
[355] | 1 | <?php
|
---|
[733] | 2 | //load XOOPS
|
---|
| 3 | $request_method = (isset($_SERVER['REQUEST_METHOD'])) ? $_SERVER['REQUEST_METHOD'] : '';
|
---|
[734] | 4 | //$_SERVER['REQUEST_METHOD'] = 'POST' is
|
---|
| 5 | //When notifying by a private message, Notification_reserve_send();
|
---|
| 6 | //it is evaded that the data base becomes read-only as a result of the check on the referrer and the method.
|
---|
| 7 | $_SERVER['REQUEST_METHOD'] = 'POST';
|
---|
| 8 |
|
---|
| 9 | if ( defined('WP_ADMIN') ) {
|
---|
| 10 | $nocommon_scripts = array(
|
---|
| 11 | 'wp-admin/async-upload.php',
|
---|
| 12 | );
|
---|
| 13 | foreach($nocommon_scripts as $nocommon_script){
|
---|
| 14 | if (strstr($_SERVER['SCRIPT_NAME'],$nocommon_script) !== false) {
|
---|
| 15 | $xoopsOption['nocommon'] = 1;
|
---|
| 16 | break;
|
---|
| 17 | }
|
---|
[733] | 18 | }
|
---|
[734] | 19 | }
|
---|
| 20 |
|
---|
[733] | 21 | require_once dirname(dirname(dirname(dirname( __FILE__ )))).'/mainfile.php' ;
|
---|
[750] | 22 |
|
---|
[733] | 23 | $_SERVER['REQUEST_METHOD'] = $request_method; //It returns it to former data.
|
---|
| 24 |
|
---|
[355] | 25 | require_once dirname( __FILE__ ).'/xpress_debug_log.php' ;
|
---|
[757] | 26 | require_once dirname(dirname( __FILE__ )).'/class/wpConfigInfo_class.php' ;
|
---|
| 27 | $wpConfigInfo = new wpConfigInfoClass;
|
---|
[755] | 28 | require_once dirname(dirname( __FILE__ )).'/class/modInfo_class.php' ;
|
---|
[757] | 29 | $modInfo = new modInfoClass;
|
---|
[355] | 30 | require_once dirname( __FILE__ ).'/set_cash_cookie_path.php' ;
|
---|
| 31 | ?> |
---|
Note: See
TracBrowser
for help on using the repository browser.