|
Revision 1174, 0.6 kB
(checked in by bchoate, 23 months ago)
|
|
Updated copyright year for source.
|
| 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 | |
|---|
| 8 | function smarty_block_mtauthoruserpicasset($args, $content, &$ctx, &$repeat) { |
|---|
| 9 | $author = $ctx->stash('author'); |
|---|
| 10 | if (!$author) { |
|---|
| 11 | return $ctx->error("No author available"); |
|---|
| 12 | } |
|---|
| 13 | |
|---|
| 14 | $asset_id = isset($author['author_userpic_asset_id']) ? $author['author_userpic_asset_id'] : 0; |
|---|
| 15 | $asset = $ctx->mt->db->fetch_assets(array('id' => $asset_id)); |
|---|
| 16 | if (!$asset) return ''; |
|---|
| 17 | |
|---|
| 18 | $ctx->stash('asset', $asset[0]); |
|---|
| 19 | |
|---|
| 20 | return $content; |
|---|
| 21 | } |
|---|
| 22 | ?> |
|---|