MST 寫:心靈捕手您好,檔案已附加上。
請各位高手與前輩幫忙囉

acp_board.rar
個人沒有安裝此外掛。而且這支外掛安裝等級為中等,並不適合新手安裝。
比對您的檔案,發現您這個檔案沒有修改好。
建議您,修改如下:
--開啟--
includes/acp/acp_board.php
--找到--
代碼: 選擇全部
'max_post_img_height' => array('lang' => 'MAX_POST_IMG_HEIGHT', 'validate' => 'int:0', 'type' => 'text:5:4', 'explain' =>
--取代成--
p.s. 這只是回復原狀。
代碼: 選擇全部
'max_post_img_height' => array('lang' => 'MAX_POST_IMG_HEIGHT', 'validate' => 'int:0', 'type' => 'text:5:4', 'explain' => true, 'append' => ' ' . $user->lang['PIXEL']),
--之後增加--
p.s. 這才是外掛新增。
代碼: 選擇全部
'legend_reimg' => 'REIMG_SETTINGS',
'reimg_max_width' => array('lang' => 'REIMG_MAX_SIZE', 'validate' => 'int:0', 'type' => false, 'method' => false, 'explain' => false),
'reimg_max_height' => array('lang' => 'REIMG_MAX_SIZE', 'validate' => 'int:0', 'type' => false, 'method' => false, 'explain' => false),
'reimg_max' => array('lang' => 'REIMG_MAX_SIZE', 'validate' => 'int:0', 'type' => 'dimension:3:4', 'explain' => true, 'append' => ' ' . $user->lang['PIXEL']),
'reimg_rel_width' => array('lang' => 'REIMG_REL_WIDTH', 'validate' => 'int:0', 'type' => 'text:3:4', 'explain' => true, 'append' => ' %'),
'reimg_swap_portrait' => array('lang' => 'REIMG_SWAP_PORTRAIT', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => true),
'reimg_ignore_sig_img' => array('lang' => 'REIMG_IGNORE_SIG_IMG', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => true),
'reimg_link' => array('lang' => 'REIMG_LINK_METHOD', 'validate' => 'string', 'type' => 'select', 'method' => 'select_reimg_link_method', 'explain' => true),
'reimg_zoom' => array('lang' => 'REIMG_ZOOM_METHOD', 'validate' => 'string', 'type' => 'select', 'method' => 'select_reimg_zoom_method', 'explain' => true),
--儲存與關閉--