Hi Donell,
After reviewing this issue is also exist in the original theme "prosilver", it has nothing to do with the theme.
We also found this topic talking about the same problem:
viewtopic.php?t=2617736
This text is quoted from an answer from a member of the support team (From the topic attached above):
However, there is a solution but we do not recommend it.
Open the file "includes/functions_posting.php" and find this code:Replace it with this:Regards,
Leenoz Team
After reviewing this issue is also exist in the original theme "prosilver", it has nothing to do with the theme.
We also found this topic talking about the same problem:
viewtopic.php?t=2617736
This text is quoted from an answer from a member of the support team (From the topic attached above):
These are the cases in which the modification information appears or does not appear:As a moderator you have the choice to add the reason or not. As a user if your post is the last in the topic you can edit it without leaving a reason. If it’s not the last the time, date and edit count is automatically added.
- If edit reason is given always display edit info
- If editing last post then display no edit info
- If m_edit (Moderator edit) permission then display no edit info
- If normal edit display edit info
However, there is a solution but we do not recommend it.
Open the file "includes/functions_posting.php" and find this code:
Code:
if ($data_ary['post_edit_reason'] || (!$auth->acl_get('m_edit', $data_ary['forum_id']) && ($post_mode == 'edit' || $post_mode == 'edit_first_post'))){$data_ary['post_edit_reason']= truncate_string($data_ary['post_edit_reason'], 255, 255, false);$sql_data[POSTS_TABLE]['sql']= array('post_edit_time'=> $current_time,'post_edit_reason'=> $data_ary['post_edit_reason'],'post_edit_user'=> (int) $data_ary['post_edit_user'],);$sql_data[POSTS_TABLE]['stat'][] = 'post_edit_count = post_edit_count + 1';}else if (!$data_ary['post_edit_reason'] && $mode == 'edit' && $auth->acl_get('m_edit', $data_ary['forum_id'])){$sql_data[POSTS_TABLE]['sql'] = array('post_edit_reason'=> '',);}
Code:
$data_ary['post_edit_reason']= truncate_string($data_ary['post_edit_reason'], 255, 255, false);$sql_data[POSTS_TABLE]['sql']= array('post_edit_time'=> $current_time,'post_edit_reason'=> $data_ary['post_edit_reason'],'post_edit_user'=> (int) $data_ary['post_edit_user'],);$sql_data[POSTS_TABLE]['stat'][] = 'post_edit_count = post_edit_count + 1';
Leenoz Team
Statistics: Posted by Leenoz — Fri Jul 26, 2024 3:57 am