diff options
author | friendica <info@friendica.com> | 2013-09-18 03:21:28 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-09-18 03:21:28 -0700 |
commit | 90b22bff38380dcfbd25fa5c3119c8df1ed4478d (patch) | |
tree | a3f55e24c71f59d6a531ece75ad314be13a6f714 /include | |
parent | 91aa5d73e77726e6cbc4d1c2e53e1529d635a9bf (diff) | |
parent | 98e87b2149cec4179bf8d6677a600e8f7564402e (diff) | |
download | volse-hubzilla-90b22bff38380dcfbd25fa5c3119c8df1ed4478d.tar.gz volse-hubzilla-90b22bff38380dcfbd25fa5c3119c8df1ed4478d.tar.bz2 volse-hubzilla-90b22bff38380dcfbd25fa5c3119c8df1ed4478d.zip |
Merge pull request #144 from omigeot/master
Changed CSS class "selected" to "active" in navbar...
Diffstat (limited to 'include')
-rw-r--r-- | include/nav.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/nav.php b/include/nav.php index dd11f10d5..812c90537 100644 --- a/include/nav.php +++ b/include/nav.php @@ -235,5 +235,5 @@ function nav_set_selected($item){ 'manage' => null, 'register' => null, ); - $a->nav_sel[$item] = 'selected'; + $a->nav_sel[$item] = 'active'; } |