From dcfcd99c6c55ddab797c31f7a544b7c1d0d9953e Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Sat, 16 Dec 2000 21:42:52 +0000 Subject: - improved web interface of cron module. - improved web interface of account module. - added simple permission system with both administrators and regular users. It can be made more fine-grained but it will do for now. - various small enhancements to the other modules, but nothing big. --- includes/user.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'includes/user.inc') diff --git a/includes/user.inc b/includes/user.inc index 75bd5cfaf..7d04c785f 100644 --- a/includes/user.inc +++ b/includes/user.inc @@ -15,7 +15,7 @@ function user_save($data, $id = 0) { foreach ($data as $key=>$value) { if ($key == "passwd") $query .= "$key = PASSWORD('". addslashes($value) ."'), "; - else $query .= "$key='". addslashes($value) ."', "; + else $query .= "$key = '". addslashes($value) ."', "; } if (empty($id)) { -- cgit v1.2.3