nieuws: prefer full names of comment authors
[minimedit.git] / nieuws / replies.php
index 61ccc2599dd647bee80b1a11cb4f14e8a90b7aaf..0847c7ef0d9aa0dde103257861863b1f847ed810 100644 (file)
@@ -7,7 +7,7 @@ $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);
@@ -28,9 +28,10 @@ foreach (glob("$pagelink/*.html") as $reply) {
        if (!$replymeta) continue;
        $replydate = str_split($replymeta[1], 2);
        $replydate[1] = $replydate[0] . $replydate[1];
+       $replyuser = new User("profile/{$replymeta[2]}");
        print '<li>';
        printf('<strong>%s</strong> <small class=date>%s</small>',
-               $replymeta[2], showdate($replydate)
+               $replyuser->html, showdate($replydate)
        );
        printf("<blockquote>%s</blockquote>\n", file_get_contents($reply));
        print "</li>\n";
@@ -40,7 +41,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";