XOOPS 2.5.6  Final
 All Classes Namespaces Files Functions Variables Pages
modifier.default.php
Go to the documentation of this file.
1 <?php
22 function smarty_modifier_default($string, $default = '')
23 {
24  if (!isset($string) || $string === '')
25  return $default;
26  else
27  return $string;
28 }
29 
30 /* vim: set expandtab: */
31 
32 ?>