mirror of
https://github.com/nextcloud/server.git
synced 2026-04-15 22:11:17 -04:00
fix a strict error in webdav
This commit is contained in:
parent
5ccce7e45f
commit
d23ecd0538
1 changed files with 1 additions and 1 deletions
|
|
@ -586,8 +586,8 @@
|
|||
$path=$options['path'];
|
||||
$name=$prop['name'];
|
||||
$ns=$prop['ns'];
|
||||
$val=$prop['val'];
|
||||
if (isset($prop["val"])) {
|
||||
$val=$prop['val'];
|
||||
$query = OC_DB::prepare("REPLACE INTO *PREFIX*properties (path,name,ns,value) VALUES(?,?,?,?)");
|
||||
$query->execute(array($path,$name,$ns,$val));
|
||||
} else {
|
||||
|
|
|
|||
Loading…
Reference in a new issue