diff options
author | Lukas Smith <lsmith@php.net> | 2007-11-24 13:55:27 +0000 |
---|---|---|
committer | Lukas Smith <lsmith@php.net> | 2007-11-24 13:55:27 +0000 |
commit | 53c7b1c2e982a17e0702b43d9cb2dc6ec5e46c61 (patch) | |
tree | 57d61b223404e2cbeb966bc21d7e2d814c6d9308 | |
parent | 794217eb2f772952aefae24195b7a982084620f2 (diff) | |
download | php-git-53c7b1c2e982a17e0702b43d9cb2dc6ec5e46c61.tar.gz |
- MFH
-rw-r--r-- | CODING_STANDARDS | 2 | ||||
-rw-r--r-- | README.CVS-RULES | 7 |
2 files changed, 4 insertions, 5 deletions
diff --git a/CODING_STANDARDS b/CODING_STANDARDS index 27bcb104d4..5fe00ddd42 100644 --- a/CODING_STANDARDS +++ b/CODING_STANDARDS @@ -16,7 +16,7 @@ Code Implementation 1. Functions that are given pointers to resources should not free them -For instance, function int mail(char *to, char *from) should NOT free +For instance, ``function int mail(char *to, char *from)`` should NOT free to and/or from. Exceptions: diff --git a/README.CVS-RULES b/README.CVS-RULES index 72aa0712ce..5d6a26a917 100644 --- a/README.CVS-RULES +++ b/README.CVS-RULES @@ -48,9 +48,8 @@ Currently we have the following branches in use:: PHP_5_3 Is used to release the PHP 5.3.x series. It still allows for larger enhancements. - PHP_5_2 Is used to release the PHP 5.2.x series. Only minor feature - enhancements may go in here, but please keep that as infrequent as - possible. + PHP_5_2 Is used to release the PHP 5.2.x series. Only bugfixes are permitted + on this branch (Consult the releasemaster prior to commit). PHP_5_1 This branch is closed. @@ -95,7 +94,7 @@ If a line begins with #, it is taken to be a comment and will not appear in the ChangeLog. Everything else goes into the ChangeLog. It is important to note that if your comment or news logline spans multiple -lines, you have to put # at the beginning of _every_ such line. +lines, you have to put # at the beginning of **every** such line. Example. Say you modified two files, datetime.c and string.c. In datetime.c you added a new format option for the date() function, and in string.c you fixed a |