Changeset 15789
- Timestamp:
- 2007/09/20 19:26:23 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/feature-module-update/html/resize_image.php
r15672 r15789 1 1 <?php 2 2 // FIXME クラスにする 3 3 $include_dir = realpath(dirname( __FILE__)); 4 4 require_once($include_dir . "/define.php"); 5 5 if (!defined("CLASS_PATH")) { 6 /** クラスパス */ 7 define("CLASS_PATH", $include_dir . HTML2DATA_DIR . "class/"); 8 } 9 require_once($include_dir . HTML2DATA_DIR. "conf/conf.php"); 6 10 require_once($include_dir . HTML2DATA_DIR. "module/gdthumb.php"); 7 11 require_once($include_dir . HTML2DATA_DIR. "class/util_extends/GC_Utils_Ex.php"); 8 require_once($include_dir . HTML2DATA_DIR. "conf/conf.php"); 12 9 13 10 14 $objThumb = new gdthumb(); … … 16 20 17 21 // ファイル名が正しい場合だけ、$fileを設定 18 if ( $this->lfCheckFileName() === true ) {22 if ( lfCheckFileName() === true ) { 19 23 $file = IMAGE_SAVE_DIR . $_GET['image']; 20 24 } else {
Note: See TracChangeset
for help on using the changeset viewer.