I hate php. Needed trailing "\n" when printing keys.
authorFaiyaz Ahmed <faiyaza@cs.princeton.edu>
Thu, 15 Mar 2007 21:43:33 +0000 (21:43 +0000)
committerFaiyaz Ahmed <faiyaza@cs.princeton.edu>
Thu, 15 Mar 2007 21:43:33 +0000 (21:43 +0000)
keys.php

index 5e56a32..29216ba 100755 (executable)
--- a/keys.php
+++ b/keys.php
@@ -77,7 +77,7 @@ if (!empty($persons)) {
 }
 
 foreach ($keys as $key) {
-  print $key['key'];
+  print $key['key']. "\n";
 }
 
 ?>