Codoforum related discussions
Error and solution sticky and frontpage on PHP 5.6

Hi i find a error also in this forum when you create a new topic
5575cc5a6973c.png

to solve change in this file

            $sticky = $_POST['sticky'] === "true" ? 'yes' : 'no';
            $frontpage = $_POST['frontpage'] === "true" ? 'yes' : 'no';

with:


            $sticky = isset($_POST['sticky']) && $_POST['sticky'] === "true" ? 'yes' : 'no';
            $frontpage = isset($_POST['frontpage']) && $_POST['frontpage'] === "true" ? 'yes' : 'no';
Hi i find a error also in this forum when you create a new topic ![5575cc5a6973c.png](serve/attachment&path=5575cc5a6973c.png) to solve change in this file ```` $sticky = $_POST['sticky'] === "true" ? 'yes' : 'no'; $frontpage = $_POST['frontpage'] === "true" ? 'yes' : 'no'; ```` with: ```` $sticky = isset($_POST['sticky']) && $_POST['sticky'] === "true" ? 'yes' : 'no'; $frontpage = isset($_POST['frontpage']) && $_POST['frontpage'] === "true" ? 'yes' : 'no'; ````

Hi,

We have fixed this issue.

You have suggested a good idea for solving it, but that will just be a workaround
as it does not solve the real problem.

Please install the new version 3.3.1 for the fix.

Hi, We have fixed this issue. You have suggested a good idea for solving it, but that will just be a workaround as it does not solve the real problem. Please install the new version 3.3.1 for the fix.
Necessity is the mother of all inventions!
118
1
2
live preview
enter atleast 10 characters
WARNING: You mentioned %MENTIONS%, but they cannot see this message and will not be notified
Saving...
Saved
With selected deselect posts show selected posts
All posts under this topic will be deleted ?
Pending draft ... Click to resume editing
Discard draft