diff --git a/captcha_img.php b/captcha_img.php
--- a/captcha_img.php
+++ b/captcha_img.php
@@ -23,6 +23,9 @@ require_once('inc/class.page.php');
if (!$use_captcha)
page::show_404('Captchas are disabled.');
-require('securimage/securimage.php');
+/* Make sure that securimage works without our own sessions */
+page::session_start();
+
+require_once 'securimage/securimage.php';
$securimage = new Securimage();
echo $securimage->show();
diff --git a/feedback-submit.php b/feedback-submit.php
--- a/feedback-submit.php
+++ b/feedback-submit.php
@@ -18,11 +18,14 @@
* along with SlatePermutate. If not, see .
*/
- include_once 'inc/class.page.php';
+include_once 'inc/class.page.php';
+
+/* Make sure we start our own named session and to not let securimage create its own :-p */
+page::session_start();
if ($use_captcha)
{
- require_once('securimage/securimage.php');
+ require_once 'securimage/securimage.php';
$securimage = new Securimage();
}
@@ -34,7 +37,6 @@ if ($use_captcha)