Changeset 5280

Show
Ignore:
Timestamp:
02/08/07 13:14:18 (2 years ago)
Author:
rambo
Message:

typo fix

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/src/build/installMidcomCore.php

    r5062 r5280  
    178178        } 
    179179        echo "Symlinking schema {$schema_sql} to " . $this->sql_dir . "/" . $module_name . ".sql\n"; 
    180         $this->make_symlink($schema, $this->sql_dir . "/" . $module_name . ".sql"); 
     180        $this->make_symlink($schema_sql, $this->sql_dir . "/" . $module_name . ".sql"); 
    181181    } 
    182182    /** 
  • trunk/src/build/installMidcomDir.php

    r5062 r5280  
    104104        { 
    105105            echo "Symlinking schema {$schema_sql} to " . $this->sql_dir . "/" . $module_name . ".sql\n"; 
    106             $this->make_symlink($schema, $this->sql_dir . "/" . $module_name . ".sql"); 
     106            $this->make_symlink($schema_sql, $this->sql_dir . "/" . $module_name . ".sql"); 
    107107        } 
    108108