From 6c53432c2cf4eeced83a9ed47c9210faf187139b Mon Sep 17 00:00:00 2001 From: Faiyaz Ahmed Date: Thu, 15 Mar 2007 21:43:33 +0000 Subject: [PATCH] I hate php. Needed trailing "\n" when printing keys. --- keys.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/keys.php b/keys.php index 5e56a32..29216ba 100755 --- a/keys.php +++ b/keys.php @@ -77,7 +77,7 @@ if (!empty($persons)) { } foreach ($keys as $key) { - print $key['key']; + print $key['key']. "\n"; } ?> -- 2.43.0