Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
QUIQQER
QUIQQER
Commits
275f1f63
Commit
275f1f63
authored
Feb 03, 2020
by
Henning Leutz
🥋
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: Deprecation Notice: implode(): Passing glue string after array is deprecated
parent
d6c5d727
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
composer.json
composer.json
+1
-1
lib/QUI/Plugins/Manager.php
lib/QUI/Plugins/Manager.php
+1
-1
No files found.
composer.json
View file @
275f1f63
...
...
@@ -2,7 +2,7 @@
"name"
:
"quiqqer
\/
quiqqer"
,
"type"
:
"quiqqer-system"
,
"description"
:
"A modular based management system written in JavaScript and PHP"
,
"version"
:
"1.3.
2
"
,
"version"
:
"1.3.
3
"
,
"license"
:
"GPL-3.0+"
,
"authors"
:
[
{
...
...
lib/QUI/Plugins/Manager.php
View file @
275f1f63
...
...
@@ -329,7 +329,7 @@ class Manager extends QUI\QDOM
$dir
=
\
explode
(
'_'
,
$dir
);
$last
=
\
end
(
$dir
);
$dir
=
\
implode
(
$dir
,
'/'
);
$dir
=
\
implode
(
'/'
,
$dir
);
// Pluginfile laden falls noch nicht getan
$f_plg
=
OPT_DIR
.
$dir
.
'/'
.
\
ucfirst
(
$last
)
.
'.php'
;
...
...
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