summaryrefslogtreecommitdiff
path: root/buildscripts/PhpDocumentor/phpDocumentor/InlineTags.inc
diff options
context:
space:
mode:
authorrojaro <>2009-10-03 00:11:50 +0000
committerrojaro <>2009-10-03 00:11:50 +0000
commit6d02d935df4b8c6525a00670d54f37a9de0a87e0 (patch)
treec5fdc48fc01e267d1d7b24c29424780c25f309d5 /buildscripts/PhpDocumentor/phpDocumentor/InlineTags.inc
parent840718fadba6645f5eb8fe038eecd084d715a581 (diff)
php 5.3 compatibility fixes
Diffstat (limited to 'buildscripts/PhpDocumentor/phpDocumentor/InlineTags.inc')
-rw-r--r--buildscripts/PhpDocumentor/phpDocumentor/InlineTags.inc6
1 files changed, 3 insertions, 3 deletions
diff --git a/buildscripts/PhpDocumentor/phpDocumentor/InlineTags.inc b/buildscripts/PhpDocumentor/phpDocumentor/InlineTags.inc
index 1bea7734..27ae3165 100644
--- a/buildscripts/PhpDocumentor/phpDocumentor/InlineTags.inc
+++ b/buildscripts/PhpDocumentor/phpDocumentor/InlineTags.inc
@@ -260,21 +260,21 @@ class parserTutorialInlineTag extends parserLinkInlineTag
{
if (strpos(trim($this->value),' '))
{
- $v = split(' ',trim($this->value));
+ $v = explode(' ', trim($this->value));
$value = $c->getTutorialLink($v[0]);
array_shift($v);
$descrip = join($v,' ');
} else $value = $c->getTutorialLink($this->value);
} else
{
- $vals = split(',',$this->value);
+ $vals = explode(',',$this->value);
$descrip = array();
foreach($vals as $val)
{
$val = trim($val);
if (strpos($val,' '))
{
- $v = split(' ',$val);
+ $v = explode(' ',$val);
$value[] = $c->getTutorialLink($v[0]);
array_shift($v);
$descrip[] = join($v,' ');