Email change of a developer (#503)
[openemr.git] / library / ajax / lists_touch.php
bloba5d3f64953e5d88269a0b5279ab4ab77c1bab129
1 <?php
2 // Copyright (C) 2011 Brady Miller <brady.g.miller@gmail.com>
3 //
4 // This program is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU General Public License
6 // as published by the Free Software Foundation; either version 2
7 // of the License, or (at your option) any later version.
8 //
9 //
10 // This file contains a function to keep track of which issues
11 // types get modified.
14 //SANITIZE ALL ESCAPES
15 $sanitize_all_escapes=true;
18 //STOP FAKE REGISTER GLOBALS
19 $fake_register_globals=false;
22 require_once(dirname(__FILE__) . "/../../interface/globals.php");
23 require_once(dirname(__FILE__) . "/../lists.inc");
25 // IF there is a pid and type then will set the entry in lists_touch table
26 if ( !(empty($_POST['patient_id'])) && !(empty($_POST['type'])) ) {
28 setListTouch($_POST['patient_id'], $_POST['type']);