Changeset 83

Show
Ignore:
Timestamp:
07/07/06 18:17:00 (2 years ago)
Author:
mrook
Message:

Fix order of parenthesis (fixes issue #9, again)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/2.2/classes/phing/tasks/ext/CreoleSQLExecTask.php

    r59 r83  
    391391                        && $line == $this->delimiter) { 
    392392                    $this->log("SQL: " . $sql, PROJECT_MSG_VERBOSE); 
    393                     $this->execSQL(StringHelper::substring($sql, 0, strlen($sql) - strlen($this->delimiter)) - 1, $out); 
     393                    $this->execSQL(StringHelper::substring($sql, 0, strlen($sql) - strlen($this->delimiter) - 1), $out); 
    394394                    $sql = ""; 
    395395                }