You know I tried the last description mod and did it 5 times and could not get the description to show under the subjuect..so I GAVE UP!!!
I thought, WOW someone else made another description mod..been at this since yesterday and have installed this 3 times now and on fresh boards and STILL CANT FREAKIN GET IT TO WORK.
I never in my life had so many problems installing phpbb mods. I also use IPB and install hundreds of mods without one hitch.
I honestly can say that you ppl that create these mods need to seriously take in to consideration that lots of other ppl have other mods also installed on their boards and you need to consider checking everything before submitting your mod to the database because it may conflict with other mods.
Now, with that said. CAN SOMEONE FREAKIN HELP ME GET THIS DANG MOD TO FREAKIN WORK before i just say screw phpbb
thanku...
I have went over and over on every edit and I know I did everything correct.. The only possible thing I can see that may be causing it not to show the description under the subject area..is this edit..
#
#-----[ FIND ]------------------------------------------
#
$sql = ($mode != "editpost") ? "INSERT INTO " . TOPICS_TABLE . " (topic_title,
#
#-----[ BEFORE, ADD ]------------------------------------------
#
// mod topic description: add to sql query
#
#-----[ IN-LINE FIND ]------------------------------------------
#
topic_title,
#
#-----[ IN-LINE AFTER, ADD ]------------------------------------------
#
topic_description, topic_descmod,
#
#-----[ IN-LINE FIND ]------------------------------------------
#
VALUES ('$post_subject',
#
#-----[ IN-LINE AFTER, ADD ]------------------------------------------
#
'$post_description', '$desc4mod',
#
#-----[ IN-LINE FIND ]------------------------------------------
#
"UPDATE " . TOPICS_TABLE . " SET topic_title = '$post_subject',
#
#-----[ IN-LINE AFTER, ADD ]------------------------------------------
#
topic_description='$post_description', topic_descmod='$desc4mod',
The part in bold above I found in my includes/functions_post.php
but there is an additional line right below it..
$sql = ($mode != "editpost") ? "INSERT INTO " . TOPICS_TABLE . " (topic_title, topic_description, topic_descmod, topic_poster, topic_time, forum_id, topic_status, topic_type, topic_vote) VALUES ('$post_subject', '$post_description', '$desc4mod', " . $userdata['user_id'] . ", $current_time, $forum_id, " . TOPIC_UNLOCKED . ", $topic_type, $topic_vote)" : "UPDATE " . TOPICS_TABLE . " SET topic_title = '$post_subject', topic_description='$post_description', topic_descmod='$desc4mod', topic_type = $topic_type " . (( $post_data['edit_vote'] || !empty($poll_title)) ? ", topic_vote = " . $topic_vote : "") . " WHERE topic_id = $topic_id";
$sql = ($mode != "editpost") ? "INSERT INTO " . TOPICS_TABLE . " (topic_title, topic_poster, topic_time, forum_id, topic_status, topic_type, topic_dl_type, topic_vote) VALUES ('$post_subject', " . $userdata['user_id'] . ", $current_time, $forum_id, " . TOPIC_UNLOCKED . ", $topic_type, $topic_dl_type, $topic_vote)" : "UPDATE " . TOPICS_TABLE . " SET topic_title = '$post_subject', topic_type = $topic_type, topic_dl_type = $topic_dl_type " . ((@$post_data['edit_vote'] || !empty($poll_title)) ? ", topic_vote = " . $topic_vote : "") . " WHERE topic_id = $topic_id";