diff -u -r -N yasuck-0.0.3.orig/docs/ChangeLog yasuck-0.0.3/docs/ChangeLog --- yasuck-0.0.3.orig/docs/ChangeLog 2004-09-19 14:33:03.308581000 -0500 +++ yasuck-0.0.3/docs/ChangeLog 2004-09-20 01:26:07.614661152 -0500 @@ -2,8 +2,16 @@ # Copyright (c)2004 badpenguins.com; Distributed under the GPL v2 # +*yasuck-0.0.4 (19 Sep 2004) + *yasuck-0.0.3 (19 Sep 2004) + 20 Sep 2004: Mike Green docs/ChangeLog, + includes/app.functions.php, patch-0.0.3-01: + + Oops, fixed bug that was hardcoding DRYRUN. Nothing was being saved + to the database. Bumped version to 0.0.4. + *yasuck-0.0.2 (18 Sep 2004) 19 Sep 2004; Mike Green docs/ChangeLog, diff -u -r -N yasuck-0.0.3.orig/includes/app.functions.php yasuck-0.0.3/includes/app.functions.php --- yasuck-0.0.3.orig/includes/app.functions.php 2004-09-19 14:19:38.556921000 -0500 +++ yasuck-0.0.3/includes/app.functions.php 2004-09-20 01:23:17.614505104 -0500 @@ -956,7 +956,7 @@ echo "$message_id(msgdate) "; } -if (! DRYRUN === true) { +if (DRYRUN !== true) { $message_id = addslashes($message_id); $board_id = addslashes($board_id); $poster_id = addslashes($poster_id);