Update of /cvs/scoop/scoop/struct/patch-files/current
In directory lithium.sabren.com:/tmp/cvs-serv3430/struct/patch-files/current

Modified Files:
	README 
Added Files:
	patch-01-DynamicFix.sql 
Log Message:
Fixes for bugs 182, 213, 214, 215.

Also applied patch 26 and 27 from 1.0-1.1 to scoop.sql, as they were in the
patches table but not actually in the database, leading to many questions about
where the special page edit form went.

-janra



Index: README
===================================================================
RCS file: /cvs/scoop/scoop/struct/patch-files/current/README,v
retrieving revision 1.120
retrieving revision 1.121
diff -C2 -d -r1.120 -r1.121
*** README	8 Feb 2006 04:04:29 -0000	1.120
--- README	13 Mar 2006 07:50:00 -0000	1.121
***************
*** 21,22 ****
--- 21,28 ----
  join here: http://lists.kuro5hin.org/mailman/listinfo/scoop-help
  or if you irc look in #scoop on irc.slashnet.org.
+ 
+ Mar 12  11:45 patch-01-DynamicFix.sql
+ 		Fixes a display bug in dynamic comments where HTML wasn't properly
+ 		migrated out of the code. Also fixes login form so you go back to the
+ 		same page you were on.
+ 

--- NEW FILE: patch-01-DynamicFix.sql ---
UPDATE blocks SET block=REPLACE(block,"$text","%%text%%") WHERE bid in ("delimiter_dyn_itemstart","delimiter_dyn_itemend");
UPDATE blocks SET block=REPLACE(block,"$class","%%class%%") WHERE bid in ("delimiter_dyn_itemstart","delimiter_dyn_itemend");

UPDATE blocks SET block=INSERT(block,LOCATE('ACTION="%%rootdir%%/"',block),21,'ACTION=""') WHERE bid='login_box';