From 5f2c7f7d672890b75a0c6029f38acfdfeb7ad36b Mon Sep 17 00:00:00 2001 From: andres_paglayan Date: Sat, 26 Mar 2005 00:38:40 +0000 Subject: [PATCH] a quick fix to avoid finder going to thousand records, will improve the whole finder thing in the future --- interface/main/finder/patient_select.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/interface/main/finder/patient_select.php b/interface/main/finder/patient_select.php index 8584b945b..f00fc68d6 100644 --- a/interface/main/finder/patient_select.php +++ b/interface/main/finder/patient_select.php @@ -5,6 +5,9 @@ include_once("$srcdir/patient.inc"); //the maximum number of patient records to display: $M = 100; +// this is a quick fix so it doesn't go to thousands records. +// the searching functions on patient.inc need improvement. +if ($patient=='') $patient='Please enter some information'; ?> -- 2.11.4.GIT