Issue 36: Deleting a resource
Status:  Fixed
Owner:
Closed:  Dec 2009
Reported by Mattmoon9@gmail.com, Nov 19, 2009
What steps will reproduce the problem?
1. Click on All Resources
2. Select a resource
3. Click Delete Record

What is the expected output? What do you see instead?
It should say "Resource Deleted Successfully".  Instead, it shows "Query
failed, please retry".  However, The resource is indeed being removed from
the table.

This is probably just a simple matter of adjusting one of the query's
spacing or removing a superflous query on the page.

Dec 8, 2009
#1 robwett...@gmail.com
I'll look into it.  I don't know what has been done with spacing before, but I'll dig 
around.
Status: Started
Dec 8, 2009
#2 robwett...@gmail.com
Previously line 77:
WHERE         WHERE           resource_id = ".$resource_id;

New line 77:
WHERE           resource_id = ".$resource_id;

There was an extra WHERE, which of course would cause things to die.
Status: Fixed