yeah.. you were right... since i'm using vba CMPS the showthread.php was not edited correctly by the installer... i went ahead and changed this:
PHP Code:
// === GAS step 615 ===
if ($GAS_setting['is_article']){
gas_prepare_showthread();
eval('print_output("' . fetch_template('GAS_showthread') . '");');
}else{
eval('print_output("' . fetch_template('SHOWTHREAD') . '");');
}
// === /GAS step 615 ===
to this
PHP Code:
// === GAS step 615 ===
if ($GAS_setting['is_article']){
gas_prepare_showthread();
eval('$HTML = "' . fetch_template('GAS_showthread') . '";');
print_portal_output($home, $HTML);
}else{
eval('$HTML = "' . fetch_template('SHOWTHREAD') . '";');
print_portal_output($home, $HTML);
}
// === /GAS step 615 ===
and the showthread is working now... however, I have this in the forum display..
PHP Code:
// === GAS step 208 ===
if ($GAS_setting['rt_template']){
eval('print_output("' . fetch_template($GAS_setting['rt_template']) . '");');
}else{
eval('print_output("' . fetch_template('FORUMDISPLAY') . '");');
}
// === /GAS step 209 ===
and i changed it to this:
PHP Code:
// === GAS step 208 ===
if ($GAS_setting['rt_template']){
eval('$HTML = "' . fetch_template('rt_template') . '";');
print_portal_output($home, $HTML);
}else{
eval('$HTML = "' . fetch_template('FORUMDISPLAY') . '";');
print_portal_output($home, $HTML);
}
// === /GAS step 209 ===
but that part is not working... any ideas why?