Notes |
|
|
I'll try to reproduce it in the lab. Targeted for 1.9.1 |
|
|
|
|
|
|
header.php takes care of deletion. in there you can find:
if($_REQUEST['action'] == 'edit' || $_REQUEST['action'] == 'delete'){
$my_table->refresh();
}
Commenting out the refresh() prevented the issue.
action edit is unaffected by the issue so I'm not sure if ->refresh() does something bad or if it's the fact that the whole page is reloaded and that delete could badly setup the filters or something like that. |
|
|
|
fixed it the cleanest way I could..
There's now a mechanism to tell the Table object that you require a special command to count number of rows in the table (allowing custom queries to be with set_count_cmd). Ported the node/view.php to this new functionality and updated Table->refresh() so that if there's a custom count query, then it needs to be updated.
fixed in 1.9 branch |
|