]> git.mxchange.org Git - friendica.git/commitdiff
ignore utf8 offset error for unit tests
authorfriendica <info@friendica.com>
Sat, 7 Apr 2012 09:31:41 +0000 (02:31 -0700)
committerfriendica <info@friendica.com>
Sat, 7 Apr 2012 09:31:41 +0000 (02:31 -0700)
include/template_processor.php

index 4c317efe1fd466975545dd3a4ac64bfa344f23b5..46252c355f54b5509ab34a8f2e2fec7925fbaae2 100644 (file)
                var $debug=false;
                
                private function _preg_error(){
+                       
                        switch(preg_last_error()){
                            case PREG_INTERNAL_ERROR: echo('PREG_INTERNAL_ERROR'); break;
                            case PREG_BACKTRACK_LIMIT_ERROR: echo('PREG_BACKTRACK_LIMIT_ERROR'); break;
                            case PREG_RECURSION_LIMIT_ERROR: echo('PREG_RECURSION_LIMIT_ERROR'); break;
                            case PREG_BAD_UTF8_ERROR: echo('PREG_BAD_UTF8_ERROR'); break;
-                           case PREG_BAD_UTF8_OFFSET_ERROR: echo('PREG_BAD_UTF8_OFFSET_ERROR'); break;
+// This is only valid for php > 5.3, not certain how to code around it for unit tests
+//                         case PREG_BAD_UTF8_OFFSET_ERROR: echo('PREG_BAD_UTF8_OFFSET_ERROR'); break;
                            default:
                                        //die("Unknown preg error.");
                                        return;