projects
/
horde.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fb63e62
)
Remove unnecessary loop.
author
Jan Schneider
<jan@horde.org>
Fri, 21 Jan 2011 19:03:30 +0000
(20:03 +0100)
committer
Jan Schneider
<jan@horde.org>
Fri, 21 Jan 2011 19:03:40 +0000
(20:03 +0100)
framework/Share/lib/Horde/Share/Sql.php
patch
|
blob
|
history
diff --git
a/framework/Share/lib/Horde/Share/Sql.php
b/framework/Share/lib/Horde/Share/Sql.php
index
ab0bee3
..
ed7aebf
100644
(file)
--- a/
framework/Share/lib/Horde/Share/Sql.php
+++ b/
framework/Share/lib/Horde/Share/Sql.php
@@
-130,9
+130,7
@@
class Horde_Share_Sql extends Horde_Share_Base
}
foreach ($rows as $row) {
- foreach ($row as $column => $value) {
- $share['perm']['users'] = $this->_buildPermsFromRow($row, 'user_uid');
- }
+ $share['perm']['users'] = $this->_buildPermsFromRow($row, 'user_uid');
}
}