Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
package-bricks
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
16
Issues
16
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
QUIQQER
package-bricks
Commits
6d02c582
Commit
6d02c582
authored
Oct 10, 2019
by
Henning Leutz
🥋
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix:
#90
parent
4eb93282
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
0 deletions
+17
-0
src/QUI/Bricks/Manager.php
src/QUI/Bricks/Manager.php
+17
-0
No files found.
src/QUI/Bricks/Manager.php
View file @
6d02c582
...
...
@@ -604,6 +604,23 @@ class Manager
}
}
// cleanup duplicated
// quiqqer/package-bricks#90
$exists
=
[];
$settings
=
\
array_filter
(
$settings
,
function
(
$entry
)
use
(
&
$exists
)
{
$name
=
$entry
[
'name'
];
if
(
isset
(
$exists
[
$name
]))
{
return
false
;
}
$exists
[
$name
]
=
true
;
return
true
;
});
try
{
QUI\Cache\Manager
::
set
(
$cache
,
$settings
);
}
catch
(
\
Exception
$Exception
)
{
...
...
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