02-13-2013, 09:15 PM
letoDMS-3.4.2
Try to delete keywords category and keywords got "An error has occured"
After looking through the code found 2 problems from op.UserDefaultKeywords.php
$categoryid = intval($_POST["categoryid"]) should be $categoryid = intval($_GET["categoryid"]);
here is the patch
57c57
< $categoryid = intval($_POST["categoryid"]);
---
> $categoryid = intval($_GET["categoryid"]);
164c164
< $categoryid = intval($_POST["categoryid"]);
---
> $categoryid = intval($_GET["categoryid"]);