1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-07 07:06:30 +02:00

Admin-ui: Grid improvements.

This commit is contained in:
Cameron
2017-04-04 09:53:48 -07:00
parent a8931d663b
commit 8ce9eb32c6
3 changed files with 48 additions and 28 deletions

View File

@@ -50,6 +50,11 @@ function varset(&$val, $default='')
*/
function defset($str, $default='')
{
if(!is_string($str))
{
return false;
}
if (defined($str)) { return constant($str); }
return $default;
}