forked from science-ation/science-ation
Fix lastInsertIds
This commit is contained in:
parent
f12445c5d0
commit
a31417285d
@ -176,7 +176,7 @@ case 'email_save':
|
|||||||
$q = $pdo->prepare("INSERT INTO emails(type,val) VALUES('$type','$key')");
|
$q = $pdo->prepare("INSERT INTO emails(type,val) VALUES('$type','$key')");
|
||||||
$q->execute();
|
$q->execute();
|
||||||
show_pdo_errors_if_any($pdo);
|
show_pdo_errors_if_any($pdo);
|
||||||
$id = lastInsertId();
|
$id = $pdo->lastInsertId();
|
||||||
} else {
|
} else {
|
||||||
error_('Email Key and Name are required');
|
error_('Email Key and Name are required');
|
||||||
exit;
|
exit;
|
||||||
@ -885,7 +885,7 @@ if (get_value_from_array($_GET, 'action') == 'send' && get_value_from_array($_GE
|
|||||||
$numtotal,
|
$numtotal,
|
||||||
0)");
|
0)");
|
||||||
$q->execute();
|
$q->execute();
|
||||||
$emailqueueid = lastInsertId();
|
$emailqueueid = $pdo->lastInsertId();
|
||||||
show_pdo_errors_if_any($pdo);
|
show_pdo_errors_if_any($pdo);
|
||||||
|
|
||||||
$urlproto = $_SERVER['SERVER_PORT'] == 443 ? 'https://' : 'http://';
|
$urlproto = $_SERVER['SERVER_PORT'] == 443 ? 'https://' : 'http://';
|
||||||
|
Loading…
x
Reference in New Issue
Block a user