root/branches/release-38/php/lib/function.mtcommentlink.php @ 2327

Revision 2327, 383 bytes (checked in by auno, 19 months ago)

Fixed misspelling. BugzID:79735

Line 
1<?php
2# Movable Type (r) Open Source (C) 2001-2008 Six Apart, Ltd.
3# This program is distributed under the terms of the
4# GNU General Public License, version 2.
5#
6# $Id$
7
8function smarty_function_mtcommentlink($args, &$ctx) {
9    $args['no_anchor'] = 1;
10    $entry_link = $ctx->tag('EntryPermalink', $args);
11    $entry_link .= '#comment-' . $ctx['comment_id'];
12    return $link;
13}
14?>
Note: See TracBrowser for help on using the browser.