PageRenderTime 56ms CodeModel.GetById 28ms RepoModel.GetById 0ms app.codeStats 0ms

/php/lib/modifier.sprintf.php

https://code.google.com/p/movabletype/
PHP | 11 lines | 5 code | 1 blank | 5 comment | 0 complexity | 4b54b4d151a4bdb54b6cd3998c3401d9 MD5 | raw file
Possible License(s): BSD-3-Clause, GPL-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: modifier.sprintf.php 5151 2010-01-06 07:51:27Z takayama $
  7. function smarty_modifier_sprintf($text, $format) {
  8. return sprintf($format, $text);
  9. }
  10. ?>