Index: openacs-4/packages/download/tcl/download-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/download/tcl/download-procs.tcl,v diff -u -r1.12 -r1.13 --- openacs-4/packages/download/tcl/download-procs.tcl 1 Mar 2005 00:01:29 -0000 1.12 +++ openacs-4/packages/download/tcl/download-procs.tcl 12 Sep 2013 10:26:11 -0000 1.13 @@ -19,11 +19,11 @@ } -column_array repository ] } { #Package not setup if { $do_redirect } { - set admin_p [ad_permission_p $package_id "admin"] + set admin_p [permission::permission_p -object_id $package_id -privilege "admin"] if { $admin_p } { set repository_id [db_nextval acs_object_id_seq] set return_url "[ad_conn package_url]admin/repository-types" - ad_return_exception_page 200 "Not setup" "Please configure this instance of the download module." + ad_return_exception_page 200 "Not setup" "Please configure this instance of the download module." } else { ad_return_exception_page 200 "Not setup" "Please have an admin configure this instance of the download module." } @@ -37,7 +37,7 @@ }] if { $count == 0 } { set return_url "[ad_conn url]?[ad_conn query]" - ad_return_exceptio_page 200 "Not setup" "Please add a download type." + ad_return_exceptio_page 200 "Not setup" "Please add a download type." ad_script_abort } } @@ -139,7 +139,7 @@ ad_script_abort } - ad_require_permission $revision_id "read" + permission::require_permission -object_id $revision_id -privilege "read" ##Record the download for all time!! set double_click_p [db_string download_count "select count(*) from download_downloads where download_id = :download_id"]