Added Samsung SCX line of printers into OS discovery

This commit is contained in:
Tom Ferguson 2016-01-13 14:51:02 +00:00
parent 8baf72432e
commit 9de9ce5f96

View File

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