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
180adb43
Commit
180adb43
authored
Sep 13, 2004
by
justdave%bugzilla.org
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 253696: work around NAME_lc bug in ActiveState Perl on Win32
Patch by Byron Jones <bugzilla@glob.com.au> r=jouni,bbaetz a=justdave
parent
d42b46fc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
DB.pm
Bugzilla/DB.pm
+5
-1
No files found.
Bugzilla/DB.pm
View file @
180adb43
...
...
@@ -152,8 +152,12 @@ sub _connect {
Password
=>
$db_pass
,
ShowErrorStatement
=>
1
,
HandleError
=>
\&
_handle_error
,
FetchHashKeyName
=>
'NAME_lc'
,
TaintIn
=>
1
,
FetchHashKeyName
=>
'NAME'
,
# Note: NAME_lc causes crash on ActiveState Perl
# 5.8.4 (see Bug 253696)
# XXX - This will likely cause problems in DB
# back ends that twiddle column case (Oracle?)
});
return
$dbh
;
...
...
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