mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-29 17:28:41 +00:00
fix #121
This commit is contained in:
parent
d278918dfa
commit
9958f81c08
|
|
@ -172,6 +172,10 @@ abstract class GrammarAbstract
|
|||
|
||||
foreach ($elements as $key => $element) {
|
||||
if (is_string($element) && $element !== '*') {
|
||||
if(strpos($element, '.')) {
|
||||
$prefix = '';
|
||||
}
|
||||
|
||||
$expression .= $this->compileSystem($element, $prefix) . ', ';
|
||||
} elseif (is_string($element) && $element === '*') {
|
||||
$expression .= '*, ';
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user