diff options
author | Kjartan Mannes <kjartan@2.no-reply.drupal.org> | 2001-11-26 18:27:34 +0000 |
---|---|---|
committer | Kjartan Mannes <kjartan@2.no-reply.drupal.org> | 2001-11-26 18:27:34 +0000 |
commit | 7d0c316f82a6332b4c731e8663d455b9a7b52259 (patch) | |
tree | 7a5cfc98a1f5c53dd85cba70d5b55e32d9ce9eb2 /modules/blog/blog.module | |
parent | 255e2d0eb7e25a8e7f61e18f12c0889c4ac5cdc6 (diff) | |
download | brdo-7d0c316f82a6332b4c731e8663d455b9a7b52259.tar.gz brdo-7d0c316f82a6332b4c731e8663d455b9a7b52259.tar.bz2 |
- fixed pass by reference errors. PHP only allows declaration of &$vars, not
passing them that way.
For more info: http://no.php.net/manual/en/language.references.pass.php
Diffstat (limited to 'modules/blog/blog.module')
-rw-r--r-- | modules/blog/blog.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/blog/blog.module b/modules/blog/blog.module index 02350798c..2bf42e3f3 100644 --- a/modules/blog/blog.module +++ b/modules/blog/blog.module @@ -225,7 +225,7 @@ function blog_page_last() { $theme->box(t("User blogs"), $output, "main"); } -function blog_form($node, $help, $error) { +function blog_form(&$node, &$help, &$error) { global $nid, $iid; |