diff --git a/app/controllers/resources/room.php b/app/controllers/resources/room.php
index 1e710e8310cefd335c8509b3e23da2619aff77d2..8eaa5527c2772359b866d45db11fbd63329e8f61 100644
--- a/app/controllers/resources/room.php
+++ b/app/controllers/resources/room.php
@@ -237,11 +237,7 @@ class Resources_RoomController extends AuthenticatedController
             foreach ($buildings as $building) {
                 //Build the complete hierarchy from the root resource to
                 //the building:
-                $hierarchy = ResourceManager::getHierarchyNames($building);
-
-                array_reverse($hierarchy);
-
-                $this->building_hierarchies[$building->id] = '/' . implode('/', $hierarchy);
+                $this->building_hierarchies[$building->id] = '/' . implode('/', ResourceManager::getHierarchyNames($building));
             }
 
             //In add-mode the category must be set before calling this method.