Subversion Repositories Applications.papyrus

Compare Revisions

Ignore whitespace Rev 930 → Rev 931

/trunk/api/text/wiki_papyrus/Parse/Syndication.php
1,5 → 1,5
<?php
// $Id: Syndication.php,v 1.5 2006-07-03 10:07:12 alexandre_tb Exp $
// $Id: Syndication.php,v 1.6 2006-09-13 09:56:02 alexandre_tb Exp $
 
 
/**
37,7 → 37,7
$options = array(
'titre' => $matches[1], 'url' => $matches[2], 'nb' => $matches[3], 'nouvellefenetre' => $matches[4], 'formatdate' => $matches[5],
);
if ($matches['7'] != "") $options['template'] = $matches[7];
if (isset ($matches['7']) && $matches['7'] != "") $options['template'] = $matches[7];
return $this->wiki->addToken($this->rule, $options);
}