Skip to content

Commit

Permalink
The bugs in the patient portal are rectified. The code 'require_once(…
Browse files Browse the repository at this point in the history
…"$srcdir/csv_like_join.php");' threw a fatal error.

We have changed the line 51 of the file 'openemr\custom\code_types.inc.php' from 'require_once("$srcdir/csv_like_join.php");' to 'require_once(dirname(__FILE__)."/../library/csv_like_join.php");'.That fixed the bugs.

Signed-off-by: Teny <teny@zhservices.com>
  • Loading branch information
jacobzh authored and bradymiller committed Oct 3, 2012
1 parent c108e50 commit 1189bd8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom/code_types.inc.php
Expand Up @@ -48,7 +48,7 @@
* @link http://www.open-emr.org
*/

require_once("$srcdir/csv_like_join.php");
require_once(dirname(__FILE__)."/../library/csv_like_join.php");

$code_types = array();
$default_search_type = '';
Expand Down

0 comments on commit 1189bd8

Please sign in to comment.