I installed the module in a test site, and I obtained the following message error:

warning: mysqli_num_rows() expects parameter 1 to be mysqli_result, string given in /Applications/MAMP/htdocs/dr6/includes/database.mysqli.inc on line 178.

The module has been tested on Drupal 6.9.

Comments

corbacho’s picture

nedjo, In ajaxsubmit.install change this

$weight = db_result('SELECT MAX(weight) FROM system');
to
$weight = db_result(db_query('SELECT MAX(weight) FROM system'));

This way it will fix this error during the installation and also now the weight of the ajaxsubmit weight is updated to a high number.

Remon’s picture

Priority: Normal » Critical
enboig’s picture

it should be

  $weight = db_result(db_query('SELECT MAX(weight) FROM {system}'));
avpaderno’s picture

Issue summary: View changes
Status: Active » Closed (outdated)

I am closing this issue, which is for a not supported Drupal version.