From: Scott P. <wht...@us...> - 2007-09-07 03:04:28
|
Update of /cvsroot/helpmeict/Helpdesk In directory sc8-pr-cvs17:/tmp/cvs-serv3692 Modified Files: issue.php Log Message: Added magic_gpc detection Cleaned up all undefined constants Index: issue.php =================================================================== RCS file: /cvsroot/helpmeict/Helpdesk/issue.php,v retrieving revision 1.36 retrieving revision 1.37 diff -C2 -d -r1.36 -r1.37 *** issue.php 11 Mar 2007 16:57:50 -0000 1.36 --- issue.php 7 Sep 2007 03:04:24 -0000 1.37 *************** *** 8,11 **** --- 8,12 ---- Changelog: + 2007-09-06 whtghst1: Added magic_gpc_quotes detection and fixed all undefined constants errors 2006-01-14 dave: Cleaned up code for v1.0 release 2005-07-02 arne_sf: Replaced all instances of column name 'user' *************** *** 70,79 **** $oldlevelname = $_POST['oldlevelname']; $publish = $_POST['publish']; [...1336 lines suppressed...] <div class="field"> <input type="checkbox" name="confidential" id="confidential" checked="checked" value="true" onclick="showConfidentiality(this,'remark','#EEEEFF')" /> ! <label for="confidential"><?php echo gettext("Make this remark confidential.");?></label> </div> </div> *************** *** 1437,1442 **** <?php if ($acl['edit_remark'] || $acl['add_remark']) {?> <div class="buttonpanel"> ! <input name="submitremark" type="button" id="submitremark" value="<?php echo gettext("Submit Changes")?>" onclick="mainSubmit()" /> ! <input name="resetremark" type="reset" id="resetremark" value="<?php echo gettext("Reset")?>" /> </div> <?php }?> --- 1454,1459 ---- <?php if ($acl['edit_remark'] || $acl['add_remark']) {?> <div class="buttonpanel"> ! <input name="submitremark" type="button" id="submitremark" value="<?php echo gettext("Submit Changes");?>" onclick="mainSubmit()" /> ! <input name="resetremark" type="reset" id="resetremark" value="<?php echo gettext("Reset");?>" /> </div> <?php }?> |