diff options
author | Dries Buytaert <dries@buytaert.net> | 2001-01-03 21:23:58 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2001-01-03 21:23:58 +0000 |
commit | 4572760eb3bd2a9454660bf187d17c7258e04bfd (patch) | |
tree | 6c73bb27ddb2c8afb5cf4dfd5ab8038ab75356da /modules/backend.class | |
parent | c85a0ee005d67a3104954ad7b637b7d22f9109b4 (diff) | |
download | brdo-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.class | 2 |
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'"); |