Changeset 23490
- Timestamp:
- 2014/06/02 12:45:20 (9 years ago)
- Location:
- branches/version-2_13-dev
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2_13-dev/data/class/pages/admin/contents/LC_Page_Admin_Contents_FileManager.php
r23279 r23490 127 127 $this->setDispError('select_file', $disp_error); 128 128 } else { 129 $path_exists = SC_Utils ::checkFileExistsWithInBasePath($objFormParam->getValue('select_file'),USER_REALDIR);129 $path_exists = SC_Utils_Ex::checkFileExistsWithInBasePath($objFormParam->getValue('select_file'),USER_REALDIR); 130 130 if ($path_exists) { 131 131 // ファイルダウンロード -
branches/version-2_13-dev/data/class/util/GC_Utils.php
r23477 r23490 128 128 trigger_error('前方互換用メソッドが使用されました。', E_USER_WARNING); 129 129 // メッセージの前に、ログ出力元関数名とログ出力関数呼び出し部分の行数を付与 130 $mess = GC_Utils ::gfGetCallerInfo(true) . $mess;130 $mess = GC_Utils_Ex::gfGetCallerInfo(true) . $mess; 131 131 132 132 // ログレベル=Debugの場合は、[Debug]を先頭に付与する -
branches/version-2_13-dev/html/upgrade/index.php
r22926 r23490 60 60 default: 61 61 header('HTTP/1.1 400 Bad Request'); 62 GC_Util ::gfPrintLog('modeの値が正しくありません。:'.$mode);62 GC_Util_Ex::gfPrintLog('modeの値が正しくありません。:'.$mode); 63 63 exit(); 64 64 break;
Note: See TracChangeset
for help on using the changeset viewer.