mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-02-06 15:14:58 +00:00
pass fulltext service to AddSubFolder controller
This commit is contained in:
parent
ced00167bf
commit
2021a124a5
|
@ -876,6 +876,8 @@ class HTTP_WebDAV_Server_SeedDMS extends HTTP_WebDAV_Server
|
||||||
*/
|
*/
|
||||||
function MKCOL($options) /* {{{ */
|
function MKCOL($options) /* {{{ */
|
||||||
{
|
{
|
||||||
|
global $fulltextservice;
|
||||||
|
|
||||||
$this->log_options('MKCOL', $options);
|
$this->log_options('MKCOL', $options);
|
||||||
|
|
||||||
$path = $options["path"];
|
$path = $options["path"];
|
||||||
|
@ -924,6 +926,7 @@ class HTTP_WebDAV_Server_SeedDMS extends HTTP_WebDAV_Server
|
||||||
$controller = Controller::factory('AddSubFolder');
|
$controller = Controller::factory('AddSubFolder');
|
||||||
$controller->setParam('dms', $this->dms);
|
$controller->setParam('dms', $this->dms);
|
||||||
$controller->setParam('user', $this->user);
|
$controller->setParam('user', $this->user);
|
||||||
|
$controller->setParam('fulltextservice', $fulltextservice);
|
||||||
$controller->setParam('folder', $folder);
|
$controller->setParam('folder', $folder);
|
||||||
$controller->setParam('name', $name);
|
$controller->setParam('name', $name);
|
||||||
$controller->setParam('comment', '');
|
$controller->setParam('comment', '');
|
||||||
|
|
Loading…
Reference in New Issue
Block a user