root/branches/release-26/php/lib/function.mtauthorauthtype.php @ 1174

Revision 1174, 430 bytes (checked in by bchoate, 23 months ago)

Updated copyright year for source.

  • Property svn:keywords set to Id Author Date Revision
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_mtauthorauthtype($args, &$ctx) {
9    $author = $ctx->stash('author');
10    if (!$author) {
11        return $ctx->error("No author available");
12    }
13    return isset($author['author_auth_type']) ? $author['author_auth_type'] : '';
14}
15?>
Note: See TracBrowser for help on using the browser.