After installing I had an error:
Fatal error: Call to undefined function db_queryd() in /home/mnadvies/public_html/drupal/sites/all/modules/path_access/path_access.module on line 124

It is the 'd' in db_queryd(
Line 124 is
db_queryd("INSERT INTO {path_access} (pid, rid, pages, visibility) VALUES (%d, %d, '', '')", $pid, $roleid);
Must:
db_query("INSERT INTO {path_access} (pid, rid, pages, visibility) VALUES (%d, %d, '', '')", $pid, $roleid);

Martin

Comments

budda’s picture

The 'd' is for debug, have uploaded a non-debug version of the code to CVS.

I noticed an issue where additional empty entries are being inserted in to the path_access db table, but cannot see what is causing this at present.

Anonymous’s picture

Status: Active » Fixed
Anonymous’s picture

Status: Fixed » Closed (fixed)