summaryrefslogtreecommitdiff
path: root/modules/backend.class
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2001-01-03 21:23:58 +0000
committerDries Buytaert <dries@buytaert.net>2001-01-03 21:23:58 +0000
commit4572760eb3bd2a9454660bf187d17c7258e04bfd (patch)
tree6c73bb27ddb2c8afb5cf4dfd5ab8038ab75356da /modules/backend.class
parentc85a0ee005d67a3104954ad7b637b7d22f9109b4 (diff)
downloadbrdo-4572760eb3bd2a9454660bf187d17c7258e04bfd.tar.gz
brdo-4572760eb3bd2a9454660bf187d17c7258e04bfd.tar.bz2
A batch of preparations for release candidate 2:
- expanded documentation (written by Jeroen) - fixed bug in includes/module.inc - fixed bug in modules/backend.class - renamed some of the SQL tables (!) - started making the diary.module truly modular (not finished yet) - renamed "admin_blocks" to "boxes" - added new functionality to "boxes": apart from PHP boxes, you can now create ASCII boxes as well as HTML boxes for those who are not confident with PHP. (requested by stalor) - added drupal-site module to keep track of known drupal sites - added small Perl script to generate encrypted CVS passwords
Diffstat (limited to 'modules/backend.class')
-rw-r--r--modules/backend.class2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/backend.class b/modules/backend.class
index 35bcfeb0e..888dcba0f 100644
--- a/modules/backend.class
+++ b/modules/backend.class
@@ -16,7 +16,7 @@ class backend {
// Contains the parsed rdf/rss/xml file:
var $headlines = array(); // latest headlines
- function backend($id, $site, $url, $file, $contact, $timout = 3600) {
+ function backend($id, $site = "", $url = "", $file = "", $contact = "", $timout = 3600) {
// Get channel info:
$result = db_query("SELECT * FROM channel WHERE id = '$id' OR site = '$site'");