diff options
author | Jehan-Guillaume (ioguix) de Rorthais | 2012-02-21 19:13:00 +0000 |
---|---|---|
committer | Jehan-Guillaume (ioguix) de Rorthais | 2012-08-22 10:26:04 +0000 |
commit | b509fa2dccda7a9df7702321c78bf0cb1f019c90 (patch) | |
tree | cb12c1733a6e53ee3cbe062a646534125f047442 | |
parent | 0f563228264b18a77dd33266bb1344c8bc5f82b4 (diff) |
Fix bug where setting privilege for functions was failing
-rw-r--r-- | privileges.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/privileges.php b/privileges.php index b5e9a67e..0a924033 100644 --- a/privileges.php +++ b/privileges.php @@ -256,7 +256,7 @@ 'database' => $_REQUEST['database'], 'schema' => $_REQUEST['schema'], $subject => $object, - "{$_subject}_oid" => $objectoid, + "{$subject}_oid" => $objectoid, 'subject'=> $subject ); } |