diff options
author | root <root@dev.spline.de> | 2008-10-17 16:05:29 +0200 |
---|---|---|
committer | root <root@dev.spline.de> | 2008-10-17 16:05:29 +0200 |
commit | 8807ed07091e28a266aade53140b7dd4ab3f2da8 (patch) | |
tree | 2119e6162ca11122bc7ccc07e367fbcebf692f32 | |
parent | ec2ac2150c1a7f65b96742676fa9e4a4cc25be43 (diff) | |
download | dev-scripts-8807ed07091e28a266aade53140b7dd4ab3f2da8.tar.gz dev-scripts-8807ed07091e28a266aade53140b7dd4ab3f2da8.tar.xz dev-scripts-8807ed07091e28a266aade53140b7dd4ab3f2da8.zip |
fix syntax error
-rwxr-xr-x | bin/check_registrations | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/check_registrations b/bin/check_registrations index cc48d4a..6146831 100755 --- a/bin/check_registrations +++ b/bin/check_registrations @@ -6,7 +6,7 @@ dbquery() { # main function main() { - dbquery("delete from user where activated = 0 and adddate(date_added,7) < curdate()") + dbquery "delete from user where activated = 0 and adddate(date_added,7) < curdate()" } # go to script dir |