diff --git a/Rocksolid_Light/rocksolid/post.php b/Rocksolid_Light/rocksolid/post.php index f094704..34b2841 100644 --- a/Rocksolid_Light/rocksolid/post.php +++ b/Rocksolid_Light/rocksolid/post.php @@ -170,7 +170,7 @@ if ($type=="new") { if ($type=="post") { $show=0; if (!$CONFIG['synchronet']) { - if (check_bbs_auth(trim($name), $userpass)==FALSE) { + if (check_bbs_auth(trim($name), $userpass) == FALSE) { $type="retry"; $error=$text_error["auth_error"]; } diff --git a/Rocksolid_Light/rslight/scripts/cron.php b/Rocksolid_Light/rslight/scripts/cron.php index 1d331a8..0cb36e4 100755 --- a/Rocksolid_Light/rslight/scripts/cron.php +++ b/Rocksolid_Light/rslight/scripts/cron.php @@ -40,6 +40,12 @@ @chown($webtmp, $CONFIG['webserver_user']); @chgrp($webtmp, $CONFIG['webserver_user']); +# Fix this. It shouldn't be necessary + $overview = $spooldir.'/articles-overview.db3'; + touch($overview); + @chown($overview, $CONFIG['webserver_user']); + @chgrp($overview, $CONFIG['webserver_user']); + /* Change to non root user */ $uinfo=posix_getpwnam($CONFIG['webserver_user']); change_identity($uinfo["uid"],$uinfo["gid"]);