From 9fd368e35b70d3aa003a05ba1ee64ecb6560fd37 Mon Sep 17 00:00:00 2001 From: Ted Trask Date: Thu, 17 Dec 2009 10:27:15 +0000 Subject: Use viewlibrary.check_permission from acf-core-0.9.0 --- weblog-status-html.lsp | 2 +- weblog-viewwatchlist-html.lsp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/weblog-status-html.lsp b/weblog-status-html.lsp index 9ff17d7..e2a9c47 100644 --- a/weblog-status-html.lsp +++ b/weblog-status-html.lsp @@ -8,7 +8,7 @@ require("viewfunctions")
<% local status if viewlibrary and viewlibrary.dispatch_component then - if session.permissions.postgresql and session.permissions.postgresql.status then + if viewlibrary.check_permission("postgresql/postgresql/status") then status = viewlibrary.dispatch_component("postgresql/postgresql/status", nil, true) end end %> diff --git a/weblog-viewwatchlist-html.lsp b/weblog-viewwatchlist-html.lsp index ba7b88a..16fa298 100644 --- a/weblog-viewwatchlist-html.lsp +++ b/weblog-viewwatchlist-html.lsp @@ -39,7 +39,7 @@ <% end %>
-<% if viewlibrary and viewlibrary.dispatch_component and session.permissions[page_info.controller].createwatchlistentry then +<% if viewlibrary and viewlibrary.dispatch_component and viewlibrary.check_permission("createwatchlistentry") then viewlibrary.dispatch_component("createwatchlistentry") end %> -- cgit v1.2.3