Private GIT
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
phpipam
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
vlbox
phpipam
Commits
37bc4cd3
Commit
37bc4cd3
authored
Jun 10, 2019
by
Miha Petkovsek
Browse files
Options
Downloads
Patches
Plain Diff
Disabled OSPF module
parent
7d78ef43
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
app/tools/routing/menu.php
+2
-2
2 additions, 2 deletions
app/tools/routing/menu.php
misc/CHANGELOG
+1
-1
1 addition, 1 deletion
misc/CHANGELOG
with
3 additions
and
3 deletions
app/tools/routing/menu.php
+
2
−
2
View file @
37bc4cd3
...
@@ -4,6 +4,6 @@
...
@@ -4,6 +4,6 @@
print
"<ul class='nav nav-tabs' style='margin-bottom:20px;'>"
;
print
"<ul class='nav nav-tabs' style='margin-bottom:20px;'>"
;
$class
=
$_GET
[
'subnetId'
]
==
"bgp"
?
"active"
:
""
;
$class
=
$_GET
[
'subnetId'
]
==
"bgp"
?
"active"
:
""
;
print
" <li role='presentation' class='
$class
'><a href='"
.
create_link
(
$_GET
[
'page'
],
"routing"
,
"bgp"
)
.
"'>"
.
_
(
'BGP routing'
)
.
"</a></li>"
;
print
" <li role='presentation' class='
$class
'><a href='"
.
create_link
(
$_GET
[
'page'
],
"routing"
,
"bgp"
)
.
"'>"
.
_
(
'BGP routing'
)
.
"</a></li>"
;
$class
=
$_GET
[
'subnetId'
]
==
"ospf"
?
"active"
:
""
;
//
$class = $_GET['subnetId']=="ospf" ? "active" : "";
print
" <li role='presentation' class='
$class
'><a href='"
.
create_link
(
$_GET
[
'page'
],
"routing"
,
"ospf"
)
.
"'>"
.
_
(
"OSPF routing"
)
.
"</a></li>"
;
//
print " <li role='presentation' class='$class'><a href='".create_link($_GET['page'], "routing", "ospf")."'>"._("OSPF routing")."</a></li>";
print
"</ul>"
;
print
"</ul>"
;
\ No newline at end of file
This diff is collapsed.
Click to expand it.
misc/CHANGELOG
+
1
−
1
View file @
37bc4cd3
...
@@ -6,7 +6,7 @@
...
@@ -6,7 +6,7 @@
+ Sessions can be now stored in database (#516);
+ Sessions can be now stored in database (#516);
+ Two-factor authentication - otp (Google Authenticator);
+ Two-factor authentication - otp (Google Authenticator);
+ Customers module (#694);
+ Customers module (#694);
+ Routing module (BGP
, OSPF
) (#2135);
+ Routing module (BGP) (#2135);
+ Search for free subnet inside whole section;
+ Search for free subnet inside whole section;
Enhancements, changes:
Enhancements, changes:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment