Improved performance and memory management of CDR engine.
[openemr.git] / interface / patient_file / summary / patient_reminders_fragment.php
blob7d62c9480916a2c505f41d2da6c940503af678e2
1 <?php
2 //
3 // Copyright (C) 2010 Brady Miller (brady@sparmy.com)
4 //
5 // This program is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU General Public License
7 // as published by the Free Software Foundation; either version 2
8 // of the License, or (at your option) any later version.
9 //
10 // This simply shows the Clinical Reminder Widget
13 //SANITIZE ALL ESCAPES
14 $sanitize_all_escapes=true;
17 //STOP FAKE REGISTER GLOBALS
18 $fake_register_globals=false;
21 require_once( dirname(__FILE__) . "/../../globals.php");
22 require_once("$srcdir/reminders.php");
24 //To improve performance and not freeze the session when running this
25 // report, turn off session writing. Note that php session variables
26 // can not be modified after the line below. So, if need to do any php
27 // session work in the future, then will need to remove this line.
28 session_write_close();
30 patient_reminder_widget($pid);