Commit info for scoop/lib/Scoop/Admin:

Modified Files:
	AdminStories.pm 
Log Message:
Fixing a panner bug that broke story voting. Namely, I removed the comment
column from storymoderate but didn't update any code to reflect that. Also,
added special key %%tid%% to story_summary for interpolating the topic id.

-keith



Index: AdminStories.pm
===================================================================
RCS file: /cvs/scoop/scoop/lib/Scoop/Admin/AdminStories.pm,v
retrieving revision 1.129
retrieving revision 1.130
diff -r1.129 -r1.130
418d417
< 				  $S->{DBHARCHIVE}->quote($moderation->{comment}) || "NULL",
424,425c423,424
< 				ROWS => 'sid, uid, time, vote, comment, section_only',
< 				VALUES => "$tosave[0],$tosave[1],$tosave[2],$tosave[3],$tosave[4],$tosave[5]"});
---
> 				ROWS => 'sid, uid, time, vote, section_only',
> 				VALUES => "$tosave[0],$tosave[1],$tosave[2],$tosave[3],$tosave[5]"});
429d427
< 		
1316,1317c1314,1315
< 		COLS => 'sid, uid, time, vote, comment, section_only',
< 		VALUES => "'$sid', '$uid', '$time', '$vote', '', '$s_o'"});
---
> 		COLS => 'sid, uid, time, vote, section_only',
> 		VALUES => "'$sid', '$uid', '$time', '$vote', '$s_o'"});