diff options
author | Kjartan Mannes <kjartan@2.no-reply.drupal.org> | 2002-05-13 18:59:53 +0000 |
---|---|---|
committer | Kjartan Mannes <kjartan@2.no-reply.drupal.org> | 2002-05-13 18:59:53 +0000 |
commit | 581bc6a267f2377addd53286b27a282b44816257 (patch) | |
tree | e10604604c55c690bc214bea68e8e3779a5543e3 /modules/cloud.module | |
parent | b81d3d93b8b64b3e0c3f03d267cf601016dcb4cf (diff) | |
download | brdo-581bc6a267f2377addd53286b27a282b44816257.tar.gz brdo-581bc6a267f2377addd53286b27a282b44816257.tar.bz2 |
- more coding style fixes.
Diffstat (limited to 'modules/cloud.module')
-rw-r--r-- | modules/cloud.module | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/cloud.module b/modules/cloud.module index 8acc5c4b0..8575b342f 100644 --- a/modules/cloud.module +++ b/modules/cloud.module @@ -47,11 +47,11 @@ function cloud_update($site) { ** Check whether the site is properly configured: */ - if (!ereg("^http://|https://|ftp://", $site[link])) { + if (!ereg("^http://|https://|ftp://", $site["link"])) { watchdog("warning", "cloud: invalid or missing URL for '". $site["name"] ."'"); } - if (!ereg("^http://|https://|ftp://", $site[feed])) { + if (!ereg("^http://|https://|ftp://", $site["feed"])) { watchdog("warning", "cloud: invalid or missing URL to monitor for '". $site["name"] ."'"); } |