mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-02-10 05:58:42 +00:00
Fix linux string
This commit is contained in:
parent
75d0f7c2b7
commit
3da4175bd2
|
|
@ -44,7 +44,7 @@ final class OperatingSystem
|
||||||
return SystemType::OSX;
|
return SystemType::OSX;
|
||||||
} elseif(stristr(PHP_OS, 'WIN') !== false) {
|
} elseif(stristr(PHP_OS, 'WIN') !== false) {
|
||||||
return SystemType::WIN;
|
return SystemType::WIN;
|
||||||
} elseif(stristr(PHP_OS, 'LINIX') !== false) {
|
} elseif(stristr(PHP_OS, 'LINUX') !== false) {
|
||||||
return SystemType::LINUX;
|
return SystemType::LINUX;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user