Closed (fixed)
Project:
CMIS API
Version:
7.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Reporter:
Created:
13 Aug 2013 at 10:15 UTC
Updated:
10 Sep 2013 at 14:12 UTC
Commit c0fb0f3 fixes just a part of the problem. When connecting to alfresco the connection
itself was ok. But the CMIS browser could not get any children from a folder. Because the url
just ends with an ampersand &
I made a little fix myself. But I do not know if this problem is only related to getChildren.
/ cmis_common / lib / cmis_repository_wrapper.php
on row 515 changes:
$ret = $this->doGet($myURL.'&'.urldecode(http_build_query($options)));
in
if (count($options) > 0) {
$myURL.= '&'.urldecode(http_build_query($options));
}
$ret = $this->doGet($myURL);
Comments
Comment #1
IanNorton commentedHi,
Thanks for highlighting this, it's been fixed in 7.x-1.5.
Regards,
Ian
Comment #2
geerlingguy commentedThe commit, for future reference: http://drupalcode.org/project/cmis.git/commit/2047545
Comment #3.0
(not verified) commentedStyle refurnished