From fb8011adb7d4d288fdf45dfa218c9cbe0d240795 Mon Sep 17 00:00:00 2001 From: laf Date: Tue, 3 May 2016 22:51:11 +0000 Subject: [PATCH] Added additional discovery check for Ricoh printers --- includes/discovery/os/ricoh.inc.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/includes/discovery/os/ricoh.inc.php b/includes/discovery/os/ricoh.inc.php index 436ffe55e7..2079e74540 100644 --- a/includes/discovery/os/ricoh.inc.php +++ b/includes/discovery/os/ricoh.inc.php @@ -4,4 +4,8 @@ if (!$os) { if (strstr($sysDescr, 'RICOH Aficio')) { $os = 'ricoh'; } + + if (stristr($sysDescr, 'RICOH Network Printer')) { + $os = 'ricoh'; + } }