Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
noblogs-composer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Container Registry
Model registry
Monitor
Service Desk
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Noblogs
noblogs-composer
Merge requests
!209
Add the memcached plugin (object caching)
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Add the memcached plugin (object caching)
memcache-object-cache
into
master
Overview
0
Commits
4
Pipelines
2
Changes
4
Merged
ale
requested to merge
memcache-object-cache
into
master
2 years ago
Overview
0
Commits
4
Pipelines
2
Changes
1
Expand
0
0
Merge request reports
Compare
version 2
version 4
ce5326a3
2 years ago
version 3
de4b8f90
2 years ago
version 2
e58860be
2 years ago
version 1
c5e9f739
2 years ago
master (base)
and
version 3
latest version
468c3e6c
4 commits,
2 years ago
version 4
ce5326a3
4 commits,
2 years ago
version 3
de4b8f90
3 commits,
2 years ago
version 2
e58860be
2 commits,
2 years ago
version 1
c5e9f739
1 commit,
2 years ago
Show latest version
1 file
+
3
−
4
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
docker/wp-config.php
+
3
−
4
Options
@@ -187,11 +187,10 @@ if (array_key_exists('debug_cookie_name', $noblogs_config) &&
set_error_handler
(
function
(
$severity
,
$message
,
$file
,
$line
)
{
if
(
$severity
&
(
E_WARNING
|
E_NOTICE
|
E_USER_WARNING
|
E_USER_NOTICE
))
{
$ex
=
new
WarningWithStacktrace
(
$message
,
0
,
$severity
,
$file
,
$line
);
e
cho
"
\n
"
.
$ex
.
"
\n
\n
"
;
e
rror_log
(
"
\n
"
.
$ex
.
"
\n
"
)
;
return
true
;
}
else
{
throw
new
ErrorException
(
$message
,
0
,
$severity
,
$file
,
$line
);
}
}
return
false
;
});
}
else
{
Loading