I searched the thread and did not see this question asked. I hope I did not miss it!
Anyway, in the following step:
Code:
step 610
in showthread.php, replace:
SELECT filename, filesize, visible, attachmentid, counter, postid, IF(thumbnail_filesize > 0, 1, 0) AS hasthumbnail, thumbnail_filesize
with:
SELECT filename, filesize, visible, attachmentid, counter, postid, IF(thumbnail_filesize > 0, 1, 0) AS hasthumbnail, thumbnail_filesize, description
I see 2 instances of the line being searched for. Which do I change?
EDIT:
The same for the following:
Code:
step 611
in showthread.php, replace:
$postattach["$attachment[postid]"]["$attachment[attachmentid]"] = $attachment;
with:
$postattach["$attachment[postid]"]["$attachment[attachmentid]"] = $attachment;// === GAS step 611 ===if ($GAS_setting['is_article'] AND $GAS_setting['show_thumb_as_avatar']){ if (!$GAS_setting['rt_thumb_avatar']){ $GAS_setting['rt_thumb_avatar']=gas_getthumbasavatar($attachment['attachmentid'],$attachment['filename']); }}// === /GAS step 611 ===
and
Code:
step 612
in showthread.php, replace:
$postbits .= construct_postbit($post, $template);
with:
// === GAS step 612 ===if($GAS_setting['is_article']){ gas_prepare_postbit($post['postid']==$FIRSTPOSTID); if(($post['postid']==$FIRSTPOSTID) OR $GAS_setting['rt_comments_only']){ $articlebits .= construct_postbit($post, $GAS_setting['rt_template']); }else{ $commentsbits .= construct_postbit($post, $GAS_setting['rt_template']); }}else{ $postbits .= construct_postbit($post, $template);}// === /GAS step 612 ===
I had to do this manually as I have a highly modified installation. These three steps are all that I have not completed.