From dcfcd99c6c55ddab797c31f7a544b7c1d0d9953e Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Sat, 16 Dec 2000 21:42:52 +0000 Subject: - improved web interface of cron module. - improved web interface of account module. - added simple permission system with both administrators and regular users. It can be made more fine-grained but it will do for now. - various small enhancements to the other modules, but nothing big. --- modules/backend.module | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'modules/backend.module') diff --git a/modules/backend.module b/modules/backend.module index 43a2211a6..9c3b2bdcc 100644 --- a/modules/backend.module +++ b/modules/backend.module @@ -44,7 +44,10 @@ function backend_page() { } function backend_cron() { - // update backends + $result = db_query("SELECT * FROM channel"); + while ($channel = db_fetch_object($result)) { + $backend = new Backend($channel->id); + } } function backend_admin_main() { -- cgit v1.2.3