This repository was archived by the owner on Nov 25, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
core/src/pydio/Core/Utils/Vars Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -302,7 +302,7 @@ public static function regexpToLdap($regexp)
302
302
public static function createGUID ()
303
303
{
304
304
if (function_exists ('com_create_guid ' )) {
305
- return com_create_guid ();
305
+ return trim ( com_create_guid (), " {} " );
306
306
} else {
307
307
mt_srand ((double )microtime () * 10000 );//optional for php 4.2.0 and up.
308
308
$ charid = strtoupper (md5 (uniqid (rand (), true )));
Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ public function applyAction(\Psr\Http\Message\ServerRequestInterface $requestInt
79
79
}
80
80
$ nodes = $ userSelection ->buildNodes ();
81
81
82
- if (isSet ($ httpVars ["verbose " ]) && $ httpVars ["verbose " ] == "true " ) {
82
+ if (isSet ($ httpVars ["verboz " ]) && $ httpVars ["verboz " ] == "true " ) {
83
83
$ this ->verboseIndexation = true ;
84
84
}
85
85
$ taskId = $ requestInterface ->getAttribute ("pydio-task-id " );
Original file line number Diff line number Diff line change 29
29
]]> </clientCallback >
30
30
<serverCallback methodName =" applyAction" restParams =" /file+" developerComment =" Trigger re-indexation of a directory, recursively" >
31
31
<input_param name =" file" type =" string" description =" Folder to index (can be empty for root)" />
32
- <input_param name =" verbose " type =" boolean" description =" Print out some info about indexation" />
32
+ <input_param name =" verboz " type =" boolean" description =" Print out some info about indexation" />
33
33
</serverCallback >
34
34
</processing >
35
35
</action >
You can’t perform that action at this time.
0 commit comments