Subversion Repositories eFlore/Applications.cel

Rev

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

Rev 418 Rev 970
Line 86... Line 86...
86
* @const SPREADSHEET_EXCEL_WRITER_NE token identifier for character "<>"
86
* @const SPREADSHEET_EXCEL_WRITER_NE token identifier for character "<>"
87
*/
87
*/
88
define('SPREADSHEET_EXCEL_WRITER_NE',"<>");
88
define('SPREADSHEET_EXCEL_WRITER_NE',"<>");
Line 89... Line 89...
89
 
89
 
Line 90... Line 90...
90
 
90
 
91
require_once('PEAR.php');
91
//require_once('PEAR.php');
92
 
92
 
93
/**
93
/**
Line 1428... Line 1428...
1428
                if($this->_current_token == SPREADSHEET_EXCEL_WRITER_COMA) {
1428
                if($this->_current_token == SPREADSHEET_EXCEL_WRITER_COMA) {
1429
                    $this->_advance();  // eat the ","
1429
                    $this->_advance();  // eat the ","
1430
                }
1430
                }
1431
                else {
1431
                else {
1432
                    return new PEAR_Error("Sintactic error: coma expected in ".
1432
                    return new PEAR_Error("Sintactic error: coma expected in ".
1433
                                          "function $function, {$num_args}º arg");
1433
                                          "function $function, {$num_args}� arg");
1434
                }
1434
                }
1435
                $result2 = $this->_condition();
1435
                $result2 = $this->_condition();
1436
                if($this->isError($result2)) {
1436
                if($this->isError($result2)) {
1437
                    return($result2);
1437
                    return($result2);
1438
                }
1438
                }