when you go to admin/database/query and enter a query, in 4.6.x you see the results of the query, but in 4.7.x you do not.
i'll tackle this after i resolve the other problems, unless someone beats me to it.

CommentFileSizeAuthor
#2 dba_4.7_query.patch.txt2.89 KBdww

Comments

robertdouglass’s picture

Looks like all that is needed is the following:

function dba_query_submit() {
  return FALSE;
}

To block the page redirect.

dww’s picture

Assigned: Unassigned » dww
Status: Active » Needs review
StatusFileSize
new2.89 KB

actually, a $form['#redirect'] = false; is even cleaner/easier.

however, while i was at it, i fixed this up again to:
a) restore the "Cancel" link
b) put the results in a fieldset

;)

jeremy’s picture

Status: Needs review » Reviewed & tested by the community

Looks good, please merge.

dww’s picture

Status: Reviewed & tested by the community » Fixed

committed to HEAD as revision 1.42.

Anonymous’s picture

Status: Fixed » Closed (fixed)