To prevent the following from appearing in your error log:
Change (in admin/note.php, 2x):PHP Warning: mysql_insert_id(): Access denied for user 'root'@'localhost'
To:PHP Code:
$insert_id = mysql_insert_id();
(mysql_insert_id() is deprecated as of PHP 5.5.0)PHP Code:
$insert_id = $db->Insert_ID();
Bookmarks