Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
doctrine-dbal
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Tomáš Trávníček
doctrine-dbal
Commits
e60c34c7
Commit
e60c34c7
authored
Jul 25, 2007
by
zYne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
--no commit message
--no commit message
parent
fbe16627
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
+6
-4
Record.php
lib/Doctrine/Record.php
+6
-4
No files found.
lib/Doctrine/Record.php
View file @
e60c34c7
...
...
@@ -742,7 +742,7 @@ abstract class Doctrine_Record extends Doctrine_Record_Abstract implements Count
if
(
isset
(
$this
->
_data
[
$lower
]))
{
// check if the property is null (= it is the Doctrine_Null object located in self::$_null)
if
(
$this
->
_data
[
$lower
]
===
self
::
$_null
)
{
if
(
$this
->
_data
[
$lower
]
===
self
::
$_null
&&
$load
)
{
$this
->
load
();
}
...
...
@@ -824,7 +824,7 @@ abstract class Doctrine_Record extends Doctrine_Record_Abstract implements Count
}
if
(
$load
)
{
$old
=
$this
->
get
(
$lower
,
false
);
$old
=
$this
->
get
(
$lower
,
$load
);
}
else
{
$old
=
$this
->
_data
[
$lower
];
}
...
...
@@ -1012,12 +1012,14 @@ abstract class Doctrine_Record extends Doctrine_Record_Abstract implements Count
* @param array $array
* @return array
*/
public
function
getPrepared
(
array
$array
=
array
())
{
public
function
getPrepared
(
array
$array
=
array
())
{
$a
=
array
();
if
(
empty
(
$array
))
{
$array
=
$this
->
_modified
;
}
foreach
(
$array
as
$k
=>
$v
)
{
$type
=
$this
->
_table
->
getTypeOf
(
$v
);
...
...
@@ -1038,7 +1040,7 @@ abstract class Doctrine_Record extends Doctrine_Record_Abstract implements Count
$a
[
$v
]
=
$this
->
getTable
()
->
getConnection
()
->
convertBooleans
(
$this
->
_data
[
$v
]);
break
;
case
'enum'
:
$a
[
$v
]
=
$this
->
_table
->
enumIndex
(
$v
,
$this
->
_data
[
$v
]);
$a
[
$v
]
=
$this
->
_table
->
enumIndex
(
$v
,
$this
->
_data
[
$v
]);
break
;
default
:
if
(
$this
->
_data
[
$v
]
instanceof
Doctrine_Record
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment