Skip to content

Commit

Permalink
Update action.php
Browse files Browse the repository at this point in the history
Allow equal sign in value string
  • Loading branch information
mko24 committed Apr 15, 2020
1 parent fb4a8c7 commit 44e5d60
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion action.php
Expand Up @@ -70,7 +70,7 @@ function _doreplace(&$event, $param) {
$autoindex = 0;
foreach ($data as $entry) {
//normal const
$item = explode("=", trim($entry));
$item = explode("=", trim($entry), 2);
if (count($item) === 2) {
//special string-replace
switch ($item[1]) {
Expand Down

0 comments on commit 44e5d60

Please sign in to comment.