When pressing the delete button on the top right corner to delete the currently edited document, the whole manager is loaded into the editing frame and the document still is not marked as deleted...
Attached a little pic of the frame issue. Upload don’t work atm.
Greetz
JUSI
-
MODX Staff
- 730 Posts
JUSI,
For now, find the file /manager/actions/mutate_content.dynamic.php
and replace line 202 as follows:
(current version)
document.location.href="index.php?id=" + document.mutate.id.value + "&a=6";
(fixed)
document.location.href="index.php?id=" + document.mutate.id.value + "&a=6";
We’ll get this fix committed to the codebase asap.
-
MODX Staff
- 730 Posts
slush puppie,
You sort of have to get used to where things are in SVN, but in this case, you can use this link:
http://svn.modxcms.com/svn/tattoo/tattoo/branches/1.0.x/manager/actions/mutate_content.dynamic.php
That will always give you the current version of that file in the "1.0.x" branch, which is where bug fixes for any 1.0.x version will be posted.
I have this problem, checked line 203 in that file it reads:
document.location.href="index.php?id=" + document.mutate.id.value + "&a=6";
Are there any other issues which could be causing this?