diff --git a/application/libraries/TagLib.php b/application/libraries/TagLib.php index 2200e16d9..e64f9819e 100644 --- a/application/libraries/TagLib.php +++ b/application/libraries/TagLib.php @@ -194,7 +194,7 @@ class TagLib ], array( 'updateamum' => date('Y-m-d H:i:s'), - 'updatevon' => 'Manually', + 'updatevon' => getAuthUID(), )); if (isError($resultUpdateNotiz)) @@ -208,10 +208,10 @@ class TagLib $resultInsertNotiz = $this->_ci->NotizModel->insert(array( 'titel' => 'TAG', 'text' => 'AUTOMATED TAG', - 'verfasser_uid' => self::BATCHUSER, //has to be an uid //TODO (auth UID) + 'verfasser_uid' => getAuthUID(), 'erledigt' => false, 'insertamum' => date('Y-m-d H:i:s'), - 'insertvon' => 'Manually', + 'insertvon' => getAuthUID(), 'typ' => $tag ));