diff options
| author | santo spider <spider@santo> | 2014-10-22 14:29:54 -0400 |
|---|---|---|
| committer | santo spider <spider@santo> | 2014-10-22 14:29:54 -0400 |
| commit | 876a284691a007d5cb16d9fcad778714adb5466f (patch) | |
| tree | a5b48309cb9212e03d95af976f496dfc7f38137a | |
| parent | 7388815d25d785b76ba7387e3f43984e8eab58c7 (diff) | |
| download | kernel-876a284691a007d5cb16d9fcad778714adb5466f.tar.gz kernel-876a284691a007d5cb16d9fcad778714adb5466f.tar.bz2 kernel-876a284691a007d5cb16d9fcad778714adb5466f.zip | |
fix missing quote on define
| -rw-r--r-- | BitSystem.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/BitSystem.php b/BitSystem.php index fa23ace..0702c0d 100644 --- a/BitSystem.php +++ b/BitSystem.php @@ -448,7 +448,7 @@ class BitSystem extends BitSingleton { $this->preDisplay( $pMid ); $gBitSmarty->assign( 'mid', $pMid ); - if( defined(ROLE_MODEL) ) { + if( defined( 'ROLE_MODEL' ) ) { $gBitSmarty->assign( 'role_model', TRUE ); } // Make sure that the gBitSystem symbol available to templates is correct and up-to-date. |
