Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
simplesamlphp-module-proxystatistics
Manage
Activity
Members
Labels
Plan
Jira
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Perun
Perun ProxyIdP
v1
simplesamlphp-module-proxystatistics
Commits
29018a2e
Unverified
Commit
29018a2e
authored
6 years ago
by
Pavel Vyskočil
Browse files
Options
Downloads
Patches
Plain Diff
Setted the default charset
* Fixed the problem with getting utf8 chars from database (Cherry picked from
1d892aa2
)
parent
189dacde
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CHANGELOG.md
+2
-0
2 additions, 0 deletions
CHANGELOG.md
lib/Auth/Process/DatabaseConnector.php
+1
-0
1 addition, 0 deletions
lib/Auth/Process/DatabaseConnector.php
with
3 additions
and
0 deletions
CHANGELOG.md
+
2
−
0
View file @
29018a2e
...
...
@@ -2,6 +2,8 @@
All notable changes to this project will be documented in this file.
## [Unreleased]
[Fixed]
-
Fixed the problem with getting utf8 chars from database
## [v1.2.0]
[Added]
...
...
This diff is collapsed.
Click to expand it.
lib/Auth/Process/DatabaseConnector.php
+
1
−
0
View file @
29018a2e
...
...
@@ -70,6 +70,7 @@ class databaseConnector
mysqli_real_connect
(
$conn
,
$this
->
serverName
,
$this
->
username
,
$this
->
password
,
$this
->
databaseName
,
$this
->
port
);
}
}
mysqli_set_charset
(
$conn
,
"utf8"
);
return
$conn
;
}
...
...
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