From 1440786c319b25f870ef1f85dba7aaf50e49f842 Mon Sep 17 00:00:00 2001 From: friendica Date: Sat, 7 Apr 2012 02:31:41 -0700 Subject: [PATCH] ignore utf8 offset error for unit tests --- include/template_processor.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/include/template_processor.php b/include/template_processor.php index 4c317efe1f..46252c355f 100644 --- a/include/template_processor.php +++ b/include/template_processor.php @@ -13,12 +13,14 @@ 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;