This commit is contained in:
crcro
2016-09-24 16:31:36 +03:00
parent 1d7592e85d
commit f1b25d1457
2 changed files with 4 additions and 8 deletions

View File

@ -1,7 +1,5 @@
<?php
if (!$os) {
if (strstr($sysDescr, 'KONICA MINOLTA ')) {
$os = 'konica';
}
if (str_contains($sysDescr, 'KONICA MINOLTA ')) {
$os = 'konica';
}

View File

@ -1,7 +1,5 @@
<?php
if (!$os) {
if (strstr($sysDescr, 'KYOCERA ')) {
$os = 'kyocera';
}
if (str_contains($sysDescr, 'KYOCERA ')) {
$os = 'kyocera';
}