From: Franky V. L. <lie...@te...> - 2008-04-26 15:40:38
|
On Sat, 26 Apr 2008 08:16:31 -0400 Neil Odell <nei...@co...> wrote: > Hi, > > I have the latest release installed. > > I successfully created and tested a survey. After I made it active I'm > getting the following error when attempting to access the survey: > > [ Error processing survey: Survey is not active. ] > > I receive the same error whether accessing the survey directly or > embedded in an existing page. > > Any help is appreciated. > > Neil > Hi Neil, you've found a bug: when you go from status "test" to status "active", the real status is being entered wrongly in the database. I've fixed this for you now. For everybody using phpESP: change admin/include/where/status.inc , line 69, from $status = $old_status | STATUS_ACTIVE; to $status = STATUS_ACTIVE; that should do the trick. Franky |