mirror of
https://github.com/fenom-template/fenom.git
synced 2023-08-10 21:13:07 +03:00
8 lines
177 B
PHP
8 lines
177 B
PHP
<?php
|
|
function fenom_modifier_default($string, $default = '') {
|
|
if ($string === FALSE || $string === NULL || $string === '') {
|
|
return $default;
|
|
}
|
|
return $string;
|
|
}
|
|
?>
|