1<?php
2// (c) Copyright by authors of the Tiki Wiki CMS Groupware Project
3//
4// All Rights Reserved. See copyright.txt for details and a complete list of authors.
5// Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details.
6// $Id$
7
8//this script may only be included - so its better to die if called directly.
9if (strpos($_SERVER["SCRIPT_NAME"], basename(__FILE__)) !== false) {
10	header("location: index.php");
11	exit;
12}
13
14function smarty_modifier_tiki_long_date($string)
15{
16	global $prefs;
17	$smarty = TikiLib::lib('smarty');
18	$smarty->loadPlugin('smarty_modifier_tiki_date_format');
19	return smarty_modifier_tiki_date_format($string, $prefs['long_date_format']);
20}
21