The problem is that I didn't want this to be what people see after they sign in. Once signed in, I wanted people to see the regular collection of stories.
I found a very simple hack of the staticpages hack in index.php.
Find the line that says:
if (( empty($topic) ) )
and change it to:
if (( empty($topic) ) && (empty($_USER['uid'])) )
Now the staticpages hack tests for both no topic and no userid (an anonymous visitor).
more questions still to come.
Id: index.php,v 1.38 2002/12/01 10:12:18 dhaun Exp
if (empty ($topic))
and edit there.if (empty ($topic))
and edit there.