fix argument order, erroneously swapped a while back

This commit is contained in:
mohrt
2003-03-05 23:53:34 +00:00
parent 0d0cdbf353
commit ec135386b1

View File

@@ -10,7 +10,7 @@
*/ */
function smarty_modifier_string_format($string, $format) function smarty_modifier_string_format($string, $format)
{ {
return sprintf($string, $format); return sprintf($format, $string);
} }
/* vim: set expandtab: */ /* vim: set expandtab: */