Missing $_REQUEST variable in messages check
[openemr.git] / contrib / forms / README.txt
blob360a6cefd66bb49d8a41919b3232916a81394454
1 Contrib Forms Checklist                         
2 ========================
3 To replace mysql_insert_id with the following changes. 
5 Whenever audit is enabled, the GLOBALS['lastidado'] set by the audit 
6  can be used for determining lastid, because it stores the 
7  correct mysql_insert_id before the audit call
9 Example:
11         if($GLOBALS['lastidado'] > 0)
12                 $last_id = $GLOBALS['lastidado'];
13         else
14                 $last_id = mysql_insert_id($GLOBALS['dbh']);