Added detection for Samsung C series printers

This commit is contained in:
laf
2016-06-03 20:14:32 +00:00
parent 2ebdb3c083
commit ac63e0a6be

View File

@ -1,6 +1,8 @@
<?php
if (!$os) {
if (strstr($sysDescr, 'Samsung CLX') || strstr($sysDescr, 'Samsung SCX')) {
$os = 'samsungprinter';
if (strstr($sysDescr, 'Samsung CLX') ||
strstr($sysDescr, 'Samsung SCX') ||
strstr($sysDescr, 'Samsun C')) {
$os = 'samsungprinter';
}
}