관리자모드 일부 원본 복구
This commit is contained in:
@ -3,24 +3,30 @@
|
||||
// 조병완(korone)님 , 남규아빠(eagletalon)님께서 만들어 주셨습니다.
|
||||
//
|
||||
|
||||
$sub_menu = '100400';
|
||||
include_once('./_common.php');
|
||||
$sub_menu = "100400";
|
||||
include_once("./_common.php");
|
||||
|
||||
auth_check($auth[$sub_menu], 'r');
|
||||
auth_check($auth[$sub_menu], "r");
|
||||
|
||||
$g4[title] = '버전확인';
|
||||
$g4[title] = "버전확인";
|
||||
|
||||
include_once('./admin.head.php');
|
||||
include_once('$g4['path']/lib/mailer.lib.php');
|
||||
include_once("./admin.head.php");
|
||||
include_once("$g4[path]/lib/mailer.lib.php");
|
||||
|
||||
echo '현재버전 : <strong>';
|
||||
$args = 'head -1 '.$g4['path'].'/HISTORY';
|
||||
echo "현재버전 : <b>";
|
||||
$args = "head -1 ".$g4[path]."/HISTORY";
|
||||
system($args);
|
||||
echo '</strong>';
|
||||
echo "</b>";
|
||||
?>
|
||||
|
||||
<p><?=implode('', file('$g4['path']/HISTORY'));?></p>
|
||||
<table width=100% border="0" align="left" cellpadding="0" cellspacing="0">
|
||||
<tr>
|
||||
<td>
|
||||
<textarea name="textarea" style='width:100%; line-height:150%; padding:10px;' rows="25" class=tx readonly><?=implode("", file("$g4[path]/HISTORY"));?></textarea>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<?
|
||||
include_once('./admin.tail.php');
|
||||
include_once("./admin.tail.php");
|
||||
?>
|
||||
|
||||
Reference in New Issue
Block a user