diff options
author | Simon Rettberg | 2017-04-18 15:52:45 +0200 |
---|---|---|
committer | Simon Rettberg | 2017-04-18 15:52:45 +0200 |
commit | 8ccac092686a817b86f87a003667628bfbdfc24e (patch) | |
tree | 08a4f82de7fff444b01011e8f5905ecf3cca0ab0 | |
parent | [locationinfo] frontend: fix indentation, convert to LF only (diff) | |
download | slx-admin-8ccac092686a817b86f87a003667628bfbdfc24e.tar.gz slx-admin-8ccac092686a817b86f87a003667628bfbdfc24e.tar.xz slx-admin-8ccac092686a817b86f87a003667628bfbdfc24e.zip |
[locations] Make Location::getTree() public
-rw-r--r-- | modules-available/locations/inc/location.inc.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules-available/locations/inc/location.inc.php b/modules-available/locations/inc/location.inc.php index a64f5c79..7ac76b3e 100644 --- a/modules-available/locations/inc/location.inc.php +++ b/modules-available/locations/inc/location.inc.php @@ -8,7 +8,7 @@ class Location private static $treeCache = false; private static $subnetMapCache = false; - private static function getTree() + public static function getTree() { if (self::$treeCache === false) { self::$treeCache = self::queryLocations(); |