Hi,
excuse me for my bad english...
the cron report me an error for mysql_num_rows if use in config mysqli
the error solved with this code.
PHP Code:
// Patched by u Killer Bestia
if($vbulletin->config['Database']['dbtype']=='mysqli' OR $vbulletin->config['Database']['dbtype']=='mysqli_slave')
$usercount = mysqli_num_rows($result);
else
$usercount = mysql_num_rows($result);
// End Patch
print("Found " . $usercount . " Inactive Users.<br/><br/>");
line 44 in file remindermail.php in cron folder.
tnx