原圖片/軟件模版編輯框
修改方法:
一、圖片模型
1.打開后臺(tái)目錄/templets/album_add.htm找到
<td> <?php GetEditor("body","",450,"Diy"); ?></td>
替換下面代碼
<td> <?php GetEditor("body","",450); ?></td>
2.打開后臺(tái)目錄/templets/album_edit.htm找到
<td><?php GetEditor("body",$body,450,"Diy"); ?></td>
替換下面代碼
<td><?php GetEditor("body",$body,450); ?></td>
二、軟件模型
1.打開后臺(tái)目錄/templets/soft_add.htm找到
GetEditor('body', '', 250, 'Small');
替換下面代碼
GetEditor('body', '', 250);
2.打開后臺(tái)目錄/templets/soft_edit.htm找到
GetEditor("body",$addRow["introduce"],250,"Small");
替換下面代碼
GetEditor("body",$addRow["introduce"],250);