diff options
author | friendica <info@friendica.com> | 2013-01-14 16:49:57 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-01-14 16:49:57 -0800 |
commit | 639325b235deb67396b7e0b64c043f85599e6641 (patch) | |
tree | 657eb033e81ddf6bfdd49aba1926d2532dd8b1a4 /mod/page.php | |
parent | 67868a30940545be00360aad43e564767c536f98 (diff) | |
download | volse-hubzilla-639325b235deb67396b7e0b64c043f85599e6641.tar.gz volse-hubzilla-639325b235deb67396b7e0b64c043f85599e6641.tar.bz2 volse-hubzilla-639325b235deb67396b7e0b64c043f85599e6641.zip |
progress on pages - they're still getting lost inside conversation(), but progress is progress.
Diffstat (limited to 'mod/page.php')
-rw-r--r-- | mod/page.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mod/page.php b/mod/page.php index 4a7f601f5..e4e22c9e1 100644 --- a/mod/page.php +++ b/mod/page.php @@ -1,9 +1,11 @@ <?php +require_once('include/items.php'); +require_once('include/conversation.php'); function page_content(&$a) { - if(argc < 3) { + if(argc() < 3) { notice( t('Invalid item.') . EOL); return; } |