PageRenderTime 45ms CodeModel.GetById 19ms RepoModel.GetById 0ms app.codeStats 0ms

/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
Possible License(s): GPL-2.0, LGPL-2.0, LGPL-2.1
  1. <?php
  2. # Movable Type (r) Open Source (C) 2001-2010 Six Apart, Ltd.
  3. # This program is distributed under the terms of the
  4. # GNU General Public License, version 2.
  5. #
  6. # $Id$
  7. function smarty_modifier_sprintf($text, $format) {
  8. return sprintf($format, $text);
  9. }
  10. ?>