Summary | bad encoding when we try to retrieve share |
Queue | Kolab |
Type | Bug |
State | Resolved |
Priority | 2. Medium |
Owners | wrobel (at) horde (dot) org |
Requester | mrousseau (at) ate (dot) tm (dot) fr |
Created | 02/12/2008 (6350 days ago) |
Due | |
Updated | 12/29/2008 (6029 days ago) |
Assigned | 04/16/2008 (6286 days ago) |
Resolved | 12/29/2008 (6029 days ago) |
Github Issue Link | |
Github Pull Request | |
Milestone | |
Patch | No |
State ⇒ Resolved
been fixed in the meanwhile. You can also check the newer Kolab Server
release - it should work there.
Horde parts you have installed. If you used versions somewhere
between RC1 and RC2 I'd suggest to update to CVS HEAD and check if
the problem persists.
State ⇒ Feedback
Horde parts you have installed. If you used versions somewhere between
RC1 and RC2 I'd suggest to update to CVS HEAD and check if the problem
persists.
State ⇒ Assigned
Queue ⇒ Kolab
$category = str_replace('+' , '%20' , $category);
after urlencode to manage space in folder name
Priority ⇒ 2. Medium
Type ⇒ Bug
Summary ⇒ bad encoding when we try to retrieve share
Queue ⇒ Kronolith
State ⇒ Unconfirmed
$share = &$shares->getShare($category);
seems to not encode correctly $category, so when we try to build the
list of share in lib/Horde/Share/kolab.php :
line 128 : "if (!in_array($object, $shares)) {" failed because it try
to compare in my test : INBOX/ESSAI with INBOX%2FESSAI
crude hack in perms.php before :
$share = &$shares->getShare($category);
put :
$category=urlencode($category);