From 64fd21a6f07a9e6f98c8a3b65ac70111dff04412 Mon Sep 17 00:00:00 2001 From: Roland Gruber Date: Sun, 8 May 2005 16:37:36 +0000 Subject: [PATCH] fixed saving of nonset attributes --- lam/lib/profiles.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lam/lib/profiles.inc b/lam/lib/profiles.inc index b35154cb..93dc4251 100644 --- a/lam/lib/profiles.inc +++ b/lam/lib/profiles.inc @@ -124,7 +124,7 @@ function saveAccountProfile($attributes, $profile, $scope) { $line = $keys[$i] . ": " . implode("+::+", $attributes[$keys[$i]]) . "\n"; } else { - $line = $keys[$i] . ": "; + $line = $keys[$i] . ": \n"; } fputs($file, $line); }