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
86facf92
Commit
86facf92
authored
Apr 27, 2016
by
Frédéric Buclin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 1268146 - profiles.email is set back to match profiles.login_name every time…
Bug 1268146 - profiles.email is set back to match profiles.login_name every time checksetup.pl is run r=gerv
parent
3891b63a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
DB.pm
Bugzilla/Install/DB.pm
+4
-2
No files found.
Bugzilla/Install/DB.pm
View file @
86facf92
...
@@ -3962,9 +3962,11 @@ sub _sanitize_audit_log_table {
...
@@ -3962,9 +3962,11 @@ sub _sanitize_audit_log_table {
}
}
sub
_split_login_and_email
{
sub
_split_login_and_email
{
my
(
$old_params
)
=
(
@_
);
my
(
$old_params
)
=
@_
;
my
$dbh
=
Bugzilla
->
dbh
;
my
$dbh
=
Bugzilla
->
dbh
;
return
if
$dbh
->
bz_column_info
(
'profiles'
,
'email'
);
$dbh
->
bz_add_column
(
'profiles'
,
'email'
,
$dbh
->
bz_add_column
(
'profiles'
,
'email'
,
{
TYPE
=>
'varchar(255)'
,
NOTNULL
=>
1
},
''
);
{
TYPE
=>
'varchar(255)'
,
NOTNULL
=>
1
},
''
);
$dbh
->
do
(
'UPDATE profiles SET email = login_name'
);
$dbh
->
do
(
'UPDATE profiles SET email = login_name'
);
...
...
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