Changeset e189236
- Timestamp:
- May 29, 2019 12:42:36 PM (22 months ago)
- Branches:
- master
- Children:
- 307a8239
- Parents:
- a3fe746
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
apps/routerconsole/java/src/net/i2p/router/web/helpers/NetDbHelper.java
ra3fe746 re189236 41 41 _x("All Routers"), // 3 42 42 _x("All Routers with Full Stats"), // 4 43 "LeaseSet Debug", // 5 44 _x("LeaseSets"), // 6 43 _x("LeaseSets"), // 5 44 // advanced below here 45 "LeaseSet Debug", // 6 45 46 "Sybil", // 7 46 47 "Advanced Lookup" }; // 8 … … 52 53 "?f=2", // 3 53 54 "?f=1", // 4 54 "?l= 2", // 555 "?l= 1", // 655 "?l=1", // 5 56 "?l=2", // 6 56 57 "?f=3", // 7 57 58 "?f=4" }; // 8 … … 300 301 private int getTab() { 301 302 if (_debug) 303 return 6; 304 if (_lease) 302 305 return 5; 303 if (_lease)304 return 6;305 306 if (".".equals(_routerPrefix)) 306 307 return 1; … … 334 335 if (i == 2 && tab != 2) 335 336 continue; // can't nav to lookup 336 if ( (i == 5 || i == 7 || i == 8)&& !isAdvanced())337 if (i > 5 && !isAdvanced()) 337 338 continue; 338 339 if (i == tab) {
Note: See TracChangeset
for help on using the changeset viewer.