diff options
author | Andreas Gohr <andi@splitbrain.org> | 2012-08-26 16:02:48 +0200 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2012-08-26 16:02:48 +0200 |
commit | 0edda900aa7730d677390edffa0bdd7cab736e1d (patch) | |
tree | 4aaa25c59c458989371aa090fe70bfb9462d2a3c /_test/core/phpQuery-onefile.php | |
parent | c114d4c4a0ef8fa3f244e09219868b02f6c01c67 (diff) | |
download | rpg-0edda900aa7730d677390edffa0bdd7cab736e1d.tar.gz rpg-0edda900aa7730d677390edffa0bdd7cab736e1d.tar.bz2 |
replace deprecated split calls FS#2583
Diffstat (limited to '_test/core/phpQuery-onefile.php')
-rw-r--r-- | _test/core/phpQuery-onefile.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/_test/core/phpQuery-onefile.php b/_test/core/phpQuery-onefile.php index 4c1dfa3da..402cf8e49 100644 --- a/_test/core/phpQuery-onefile.php +++ b/_test/core/phpQuery-onefile.php @@ -4206,7 +4206,7 @@ class phpQueryObject .($node->getAttribute('id') ? '#'.$node->getAttribute('id'):'') .($node->getAttribute('class') - ? '.'.join('.', split(' ', $node->getAttribute('class'))):'') + ? '.'.join('.', explode(' ', $node->getAttribute('class'))):'') .($node->getAttribute('name') ? '[name="'.$node->getAttribute('name').'"]':'') .($node->getAttribute('value') && strpos($node->getAttribute('value'), '<'.'?php') === false |