Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emulab
emulab-devel
Commits
b4f8bdc4
Commit
b4f8bdc4
authored
Aug 09, 2007
by
Russ Fish
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Link by xref_tag on redirect if there is one.
parent
c14da74c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletion
+7
-1
www/kb-manage.php3
www/kb-manage.php3
+7
-1
No files found.
www/kb-manage.php3
View file @
b4f8bdc4
...
...
@@ -469,7 +469,13 @@ if (isset($idx) && (!isset($action) || $action != "delete")) {
#
# Okay, redirect the user over to the show page so they can see it.
#
header
(
"Location: kb-show.php3?idx=
$idx
"
);
if
(
isset
(
$xref_tag
)
&&
$xref_tag
!=
""
)
{
header
(
"Location: kb-show.php3?xref_tag="
.
str_replace
(
"'"
,
""
,
$xref_tag
));
}
else
{
header
(
"Location: kb-show.php3?idx=
$idx
"
);
}
}
else
{
# Redirect to the search page.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment