]> source.dussan.org Git - nextcloud-server.git/commitdiff
Add PHPDoc about sanitization of "insertIfNotExist"
authorLukas Reschke <lukas@owncloud.com>
Fri, 17 Oct 2014 09:06:49 +0000 (11:06 +0200)
committerLukas Reschke <lukas@owncloud.com>
Fri, 17 Oct 2014 09:06:49 +0000 (11:06 +0200)
Let's document this potential pitfall properly.

lib/private/db/adapter.php

index 6742ccdbb453de1ce5b3c3239ef9631b4dc53c78..972008776f6007e642fc95118f20e87208cb18a3 100644 (file)
@@ -42,7 +42,7 @@ class Adapter {
        /**
         * insert the @input values when they do not exist yet
         * @param string $table name
-        * @param array $input key->value pairs
+        * @param array $input key->value pair, key has to be sanitized properly
         * @return int count of inserted rows
         */
        public function insertIfNotExist($table, $input) {