tony2001                Fri Jan 12 12:06:45 2007 UTC

  Modified files:              (Branch: PHP_5_2)
    /php-src/ext/mbstring       mbstring.c 
  Log:
  MFH
  
  
http://cvs.php.net/viewvc.cgi/php-src/ext/mbstring/mbstring.c?r1=1.224.2.22.2.19&r2=1.224.2.22.2.20&diff_format=u
Index: php-src/ext/mbstring/mbstring.c
diff -u php-src/ext/mbstring/mbstring.c:1.224.2.22.2.19 
php-src/ext/mbstring/mbstring.c:1.224.2.22.2.20
--- php-src/ext/mbstring/mbstring.c:1.224.2.22.2.19     Mon Jan  1 09:36:02 2007
+++ php-src/ext/mbstring/mbstring.c     Fri Jan 12 12:06:45 2007
@@ -17,7 +17,7 @@
    +----------------------------------------------------------------------+
  */
 
-/* $Id: mbstring.c,v 1.224.2.22.2.19 2007/01/01 09:36:02 sebastian Exp $ */
+/* $Id: mbstring.c,v 1.224.2.22.2.20 2007/01/12 12:06:45 tony2001 Exp $ */
 
 /*
  * PHP 4 Multibyte String module "mbstring"
@@ -1742,7 +1742,7 @@
                RETURN_FALSE;
        }
 
- n = php_mb_stripos(0, old_haystack, old_haystack_len, old_needle, 
old_needle_len, offset, from_encoding TSRMLS_CC);
+       n = php_mb_stripos(0, old_haystack, old_haystack_len, old_needle, 
old_needle_len, offset, from_encoding TSRMLS_CC);
 
        if (n >= 0) {
                RETVAL_LONG(n);
@@ -1772,7 +1772,7 @@
                RETURN_FALSE;
        }
 
- n = php_mb_stripos(1, old_haystack, old_haystack_len, old_needle, 
old_needle_len, offset, from_encoding TSRMLS_CC);
+       n = php_mb_stripos(1, old_haystack, old_haystack_len, old_needle, 
old_needle_len, offset, from_encoding TSRMLS_CC);
 
        if (n >= 0) {
                RETVAL_LONG(n);
@@ -1956,6 +1956,7 @@
                }
        }
 }
+/* }}} */
 
 /* {{{ proto string mb_strrichr(string haystack, string needle[, bool part[, 
string encoding]])
    Finds the last occurrence of a character in a string within another, case 
insensitive */
@@ -1983,7 +1984,7 @@
                RETURN_FALSE;
        }
 
- n = php_mb_stripos(1, haystack.val, haystack.len, needle.val, needle.len, 0, 
from_encoding TSRMLS_CC);
+       n = php_mb_stripos(1, haystack.val, haystack.len, needle.val, 
needle.len, 0, from_encoding TSRMLS_CC);
 
        if (n <0) {
                RETURN_FALSE;
@@ -2008,6 +2009,7 @@
                }
        }
 }
+/* }}} */
 
 /* {{{ proto int mb_substr_count(string haystack, string needle [, string 
encoding])
    Count the number of substring occurrences */
@@ -4237,6 +4239,7 @@
 
        return ret ? 0 : -1;
 }
+/* }}} */
 
 /* {{{ MBSTRING_API int php_mb_gpc_encoding_detector()
  */

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to