Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
bugzilla
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
bugzilla
Commits
8b18b7e1
Commit
8b18b7e1
authored
Nov 20, 2005
by
mozilla%colinogilvie.co.uk
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 304936: checksetup.pl should inform the user to go to editparams.cgi if they haven't yet
Patch by Colin Ogilvie <colin.ogilvie@gmail.com>, r=LpSolit, a=justdave
parent
740e0366
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
0 deletions
+17
-0
checksetup.pl
checksetup.pl
+17
-0
No files found.
checksetup.pl
View file @
8b18b7e1
...
...
@@ -4550,4 +4550,21 @@ $dbh->do("UPDATE components " .
unlink
"$datadir/versioncache"
;
# Check if the default parameter for urlbase is still set, and if so, give
# notification that they should go and visit editparams.cgi
my
@params
=
Bugzilla::Config::Core::
get_param_list
();
my
$urlbase_default
=
''
;
foreach
my
$item
(
@params
)
{
next
unless
$item
->
{
'name'
}
eq
'urlbase'
;
$urlbase_default
=
$item
->
{
'default'
};
last
;
}
if
(
Param
(
'urlbase'
)
eq
$urlbase_default
)
{
print
"Now that you have installed Bugzilla, you should visit the \n"
.
"'Parameters' page (linked in the footer of the Administrator \n"
.
"account) to ensure it is set up as you wish - this includes \n"
.
"setting the 'urlbase' option to the correct url.\n"
unless
$silent
;
}
################################################################################
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