diff --git a/nucleus/libs/ACTIONS.php b/nucleus/libs/ACTIONS.php index eee54877..174380ea 100644 --- a/nucleus/libs/ACTIONS.php +++ b/nucleus/libs/ACTIONS.php @@ -1321,6 +1321,10 @@ function parse_sitevar($which) { break; case 'adminurl': echo $CONF['AdminURL']; + break; + default: + if(isset($CONF[$which])) + echo $CONF[$which]; } }