Browse Source

fix local_url not being set correctly

CauseFX 4 years ago
parent
commit
6a69b8ffea
1 changed files with 1 additions and 1 deletions
  1. 1 1
      api/classes/organizr.class.php

+ 1 - 1
api/classes/organizr.class.php

@@ -1140,7 +1140,7 @@ class Organizr
 		}
 		foreach ($tabs as $id => $tab) {
 			$tabs[$id]['url'] = $this->userDefinedIdReplacementLink($tab['url'], $variables);
-			$tabs[$id]['url_local'] = $this->userDefinedIdReplacementLink($tab['url'], $variables);
+			$tabs[$id]['url_local'] = $this->userDefinedIdReplacementLink($tab['url_local'], $variables);
 		}
 		return $tabs;
 	}