svn: SVNROOT/ commit-email.php
[email protected] (Gwynne Raskind) Thu, 16 Jul 09 01:03:23 +0000
| Newsgroups | php.cvs,svn.migration |
|---|---|
| Message-ID | <[email protected]> |
--93e3e7a776ab7d8f926d803d552e950c6beb6e8d
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: 8bit
gwynne Thu, 16 Jul 2009 01:03:23 +0000
URL: http://svn.php.net/viewvc?view=revision&revision=284165
Changed paths:
U SVNROOT/commit-email.php
Log:
gwynne made a logic booboo
Modified: SVNROOT/commit-email.php
===================================================================
--- SVNROOT/commit-email.php 2009-07-16 01:00:22 UTC (rev 284164)
+++ SVNROOT/commit-email.php 2009-07-16 01:03:23 UTC (rev 284165)
@@ -121,7 +121,7 @@
$saw_last_ISO = TRUE;
}
if ($username === $commit_user) {
- if ($saw_last_ISO === TRUE) {
+ if ($saw_last_ISO !== TRUE) {
$fullname = iconv("ISO-8859-1", "UTF-8//TRANSLIT", $fullname);
}
$from = array($username, $fullname);
--93e3e7a776ab7d8f926d803d552e950c6beb6e8d--