Changeset 4455
- Timestamp:
- Oct 20, 2007, 1:51:59 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
OpenPNE/branches/stable-2.8.x/public_html/download.php
r4454 r4455 14 14 15 15 //SNSにログインしているかどうか 16 if (CHECK_IMG_AUTH) { 17 session_cache_limiter('public'); 16 session_cache_limiter('public'); 18 17 19 $module = $_GET['m']; 20 // init 21 if ($init = openpne_ext_search("{$module}/init.inc")) { 22 require_once $init; 23 } 24 //auth 25 if ($auth = openpne_ext_search("{$module}/auth.inc")) { 26 require_once $auth; 27 } else { 28 require_once OPENPNE_WEBAPP_DIR . '/lib/auth.inc'; 29 } 18 $module = $_GET['m']; 19 // init 20 if ($init = openpne_ext_search("{$module}/init.inc")) { 21 require_once $init; 22 } 23 //auth 24 if ($auth = openpne_ext_search("{$module}/auth.inc")) { 25 require_once $auth; 26 } else { 27 require_once OPENPNE_WEBAPP_DIR . '/lib/auth.inc'; 30 28 } 31 29
Note: See TracChangeset
for help on using the changeset viewer.