/php/lib/modifier.sprintf.php
http://github.com/openmelody/melody · PHP · 11 lines · 5 code · 1 blank · 5 comment · 0 complexity · 8383dee6c6d36c9afca04ffe31cbdac1 MD5 · raw file
- <?php
- # Movable Type (r) Open Source (C) 2001-2010 Six Apart, Ltd.
- # This program is distributed under the terms of the
- # GNU General Public License, version 2.
- #
- # $Id$
- function smarty_modifier_sprintf($text, $format) {
- return sprintf($format, $text);
- }
- ?>