Subversion Repositories Applications.papyrus

Rev

Rev 345 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 345 Rev 374
Line 1... Line 1...
1
<?php
1
<?php
2
// $Id: Plan.php,v 1.1 2005-04-18 16:42:02 jpm Exp $
2
// $Id: Plan.php,v 1.2 2005-05-25 14:05:31 jpm Exp $
Line 3... Line 3...
3
 
3
 
4
 
4
 
5
/**
5
/**
Line 32... Line 32...
32
    * the source text, plus any text priot to the match.
32
    * the source text, plus any text priot to the match.
33
    *
33
    *
34
    */
34
    */
35
    function process(&$matches)
35
    function process(&$matches)
36
    {
36
    {
37
        if ($matches[2] == 'oui') {
37
        if (isset($matches[2]) && $matches[2] == 'oui') {
38
            $matches[2] = true;
38
            $matches[2] = true;
39
        } else {
39
        } else {
40
            $matches[2] = false;
40
            $matches[2] = false;
41
        }
41
        }
42
        $options = array(
42
        $options = array(