Changeset 2029058
- Timestamp:
- 02/12/2019 09:44:51 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
bbq/tags/1.4.4/includes/parser/phpQuery/phpQuery.php
r1961346 r2029058 33 33 abstract class phpQuery { 34 34 /** 35 * XXX: Workaround for mbstring problems 36 * 35 * XXX: Workaround for mbstring problems 36 * 37 37 * @var bool 38 38 */ … … 1322 1322 * @package phpQuery 1323 1323 */ 1324 function pq($arg1, $context = null) { 1325 $args = func_get_args(); 1326 return call_user_func_array( 1327 array('phpQuery', 'pq'), 1328 $args 1329 ); 1324 if(!function_exists('pq')) { 1325 function pq($arg1, $context = null) 1326 { 1327 $args = func_get_args(); 1328 1329 return call_user_func_array( 1330 ['phpQuery', 'pq'], 1331 $args 1332 ); 1333 } 1330 1334 } 1331 1335 // add plugins dir and Zend framework to include path
Note: See TracChangeset
for help on using the changeset viewer.