Update of /cvsroot/mantisbt/web
In directory usw-pr-cvs1:/tmp/cvs-serv19823/web
Modified Files:
guidelines.php3
Log Message:
updated guidelines to include the concept of cleaned variables
Index: guidelines.php3
===================================================================
RCS file: /cvsroot/mantisbt/web/guidelines.php3,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- guidelines.php3 26 May 2002 11:57:44 -0000 1.13
+++ guidelines.php3 27 May 2002 21:05:15 -0000 1.14
@@ -21,8 +21,8 @@
<li>Parameters and variables passed from forms that have been cleaned of any special SQL chars (i.e. slashes) should be prefixed with c_
<li>Uncleaned function parameters should be prefixed with p_
<li>Uncleaned variables passed from forms should be prefixed with f_
- <li>Other variables are prefixed with v_, v2_, etc.
- <li>Never prefix with lee_ or O_ or queue_ (visually confusing)
+ <li>Other variables are prefixed with v_, v2_, etc
+ <li>Never prefix with l_ or o_ or q_ (visually confusing)
<li>$query and $result should be used for SQL query and results respectively
</ul>
|