~ubuntu-branches/debian/squeeze/movabletype-opensource/squeeze

« back to all changes in this revision

Viewing changes to php/lib/function.mtwidgetset.php

  • Committer: Bazaar Package Importer
  • Author(s): Dominic Hargreaves
  • Date: 2008-06-13 23:28:40 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20080613232840-ya4jfxv1jgl45a3d
Tags: 4.2~rc2-1
* New upstream release candidate
* Update Standards-Version (no changes)
* Ensure that schema upgrade message is always seen

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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: function.mtwidgetset.php 2091 2008-04-25 01:26:16Z fumiakiy $
 
7
 
 
8
require_once("function.mtwidgetmanager.php");
 
9
function smarty_function_mtwidgetset($args, &$ctx) {
 
10
    return smarty_function_mtwidgetmanager($args, $ctx);
 
11
}
 
12
?>
 
13