]> source.dussan.org Git - nextcloud-server.git/commitdiff
fixing typos + adding missing filed $activeEntry
authorThomas Müller <thomas.mueller@tmit.eu>
Fri, 20 Sep 2013 19:45:27 +0000 (21:45 +0200)
committerThomas Müller <thomas.mueller@tmit.eu>
Fri, 20 Sep 2013 19:45:27 +0000 (21:45 +0200)
lib/navigationmanager.php
lib/public/inavigationmanager.php

index f032afd1fc433ea472dda67edfdd44de57d257fc..cf3bf84d99856adf90a8384709e5332340d6884d 100644 (file)
 namespace OC;
 
 /**
- * Manages the owncloud navigation
+ * Manages the ownCloud navigation
  */
 class NavigationManager {
        protected $entries = array();
+       protected $activeEntry;
 
        /**
         * Creates a new navigation entry
index 21744dd1c21db371309e0f527e92f2222f661a05..f89e790c1d0f6bbf70f8cf51db8a12c194781a83 100644 (file)
@@ -10,7 +10,7 @@
 namespace OCP;
 
 /**
- * Manages the owncloud navigation
+ * Manages the ownCloud navigation
  */
 interface INavigationManager {
        /**
@@ -24,4 +24,4 @@ interface INavigationManager {
         * @param string $appId id of the app entry to activate (from added $entry)
         */
        public function setActiveEntry($appId);
-}
\ No newline at end of file
+}