24 lines
393 B
PHP
24 lines
393 B
PHP
|
|
|
|
<?php
|
|
|
|
defined ( 'IN_TS' ) or die ( 'Access Denied.' );
|
|
$userid = aac('user')->isLogin();
|
|
|
|
$attachid = intval ( $_GET ['id'] );
|
|
|
|
$stredit = $new ['attach']->find ( 'attach', array ('attachid' => $attachid ) );
|
|
$stredit['content'] = tsDecode($stredit['content']);
|
|
if($stredit=='')
|
|
{
|
|
|
|
tsNotice('NO!');
|
|
}
|
|
if($userid!=$stredit['userid'])
|
|
{
|
|
tsNotice('NO');
|
|
|
|
}
|
|
include template ( "edit" );
|
|
|
|
?>
|