projects
/
horde.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c06eef1
)
Fix parse errors.
author
Jan Schneider
<jan@horde.org>
Thu, 3 Jun 2010 10:37:04 +0000
(12:37 +0200)
committer
Jan Schneider
<jan@horde.org>
Thu, 3 Jun 2010 10:37:04 +0000
(12:37 +0200)
framework/Group/lib/Horde/Group/SqlObject.php
patch
|
blob
|
history
diff --git
a/framework/Group/lib/Horde/Group/SqlObject.php
b/framework/Group/lib/Horde/Group/SqlObject.php
index
e37be8f
..
95308b3
100644
(file)
--- a/
framework/Group/lib/Horde/Group/SqlObject.php
+++ b/
framework/Group/lib/Horde/Group/SqlObject.php
@@
-75,7
+75,7
@@
class Horde_Group_SqlObject extends Horde_Group_DataTreeObject
*
* @return mixed The value of the attribute, or null.
*/
- public get($attribute)
+ public
function
get($attribute)
{
return isset($this->data[$attribute])
? $this->data[$attribute]
@@
-88,7
+88,7
@@
class Horde_Group_SqlObject extends Horde_Group_DataTreeObject
* @param string $attribute The attribute to set.
* @param mixed $value The value for $attribute.
*/
- public set($attribute, $value)
+ public
function
set($attribute, $value)
{
$this->data[$attribute] = $value;
}