auth: store global user metadata in User object
[minimedit.git] / nieuws / replies.php
index a6d9740c444950cafe95fbfef56e3cbb44824b85..f762c23ccf8da577faab77c06e7eb90165890f44 100644 (file)
@@ -7,8 +7,9 @@ $pagelink = $Page.$Args;
 if ($_POST) {
        try {
                @mkdir($pagelink);
-               $target = $pagelink.'/'.date('YmdHis').':'.$User['name'].'.html';
+               $target = $pagelink.'/'.date('YmdHis').':'.$User->login.'.html';
                $html = nl2br(htmlspecialchars($_POST['reply']));
+               $html = "<p>$html</p>\n";
                $written = file_put_contents($target, $html);
                if ($written === FALSE) {
                        throw new Exception('Fout bij opslaan');
@@ -31,7 +32,7 @@ foreach (glob("$pagelink/*.html") as $reply) {
        printf('<strong>%s</strong> <small class=date>%s</small>',
                $replymeta[2], showdate($replydate)
        );
-       printf("<p>%s</p>\n", file_get_contents($reply));
+       printf("<blockquote>%s</blockquote>\n", file_get_contents($reply));
        print "</li>\n";
 }
 
@@ -39,7 +40,7 @@ print '<li>';
 print '<form method="post" action="">';
 printf('<textarea id="%s" name="%1$s" cols=60 rows=3 placeholder="%s">%s</textarea>'."\n",
        'reply',
-       "Bericht van {$User['name']}",
+       "Bericht van {$User->login}",
        ''
 );
 print '<input type="submit" value="Plaatsen" />'."\n";