mirror of
https://github.com/atlanticbiomedical/portal-legacy.git
synced 2025-07-02 01:47:28 -04:00
initial commit
This commit is contained in:
39
lib/symfony/vendor/patch/propel-generator-1.patch
vendored
Executable file
39
lib/symfony/vendor/patch/propel-generator-1.patch
vendored
Executable file
@ -0,0 +1,39 @@
|
||||
Index: lib/vendor/propel-generator/classes/propel/engine/database/model/AppData.php
|
||||
===================================================================
|
||||
--- lib/vendor/propel-generator/classes/propel/engine/database/model/AppData.php (revision 3150)
|
||||
+++ lib/vendor/propel-generator/classes/propel/engine/database/model/AppData.php (working copy)
|
||||
@@ -95,7 +95,7 @@
|
||||
*/
|
||||
public function getShortName()
|
||||
{
|
||||
- return str_replace("-schema", "", $name);
|
||||
+ return str_replace("-schema", "", $this->name);
|
||||
}
|
||||
|
||||
/**
|
||||
Index: lib/vendor/propel-generator/classes/propel/engine/database/model/Table.php
|
||||
===================================================================
|
||||
--- lib/vendor/propel-generator/classes/propel/engine/database/model/Table.php (revision 3150)
|
||||
+++ lib/vendor/propel-generator/classes/propel/engine/database/model/Table.php (working copy)
|
||||
@@ -1015,7 +1015,7 @@
|
||||
|
||||
if ($this->abstractValue) {
|
||||
$result .= " abstract=\""
|
||||
- . ($abstractValue ? "true" : "false")
|
||||
+ . ($this->abstractValue ? "true" : "false")
|
||||
. '"';
|
||||
}
|
||||
|
||||
Index: lib/vendor/propel-generator/classes/propel/phing/PropelSQLExec.php
|
||||
===================================================================
|
||||
--- lib/vendor/propel-generator/classes/propel/phing/PropelSQLExec.php (revision 3150)
|
||||
+++ lib/vendor/propel-generator/classes/propel/phing/PropelSQLExec.php (working copy)
|
||||
@@ -667,7 +667,7 @@
|
||||
{
|
||||
if (!empty($this->tSqlCommand)) {
|
||||
$this->parent->log("Executing commands", PROJECT_MSG_INFO);
|
||||
- $this->parent->runStatements($tSqlCommand, $out);
|
||||
+ $this->parent->runStatements($this->tSqlCommand, $out);
|
||||
}
|
||||
|
||||
if ($this->tSrcFile !== null) {
|
Reference in New Issue
Block a user