1
Today, I upgraded my XOOPS 2.0.16 site into XOOPS 2.0.17 (see SourceForge).
I also make a copy of file header.php (Xoops root folder), so there are 2 file:
- header.php
- header2.php
header.php define a XOOPS template with left and right column (theme.html --> called in theme.php in class folder) and header.php define a XOOPS template without left and right column (theme2.html --> called in theme2.php in class folder, also duplicated from theme.php) so I have a bigger text area and didn't break my template.
I also modify file in news 1.55 module folder, submit.php
I change default header template in submit.php (line 34) into header2.php (have a bigger text area) and by default, after we submit, edit, or delete the news, news module will redirect the page to XOOPS_URL.'/modules/news/index.php'. But, I redirect it to XOOPS_URL.'/index.php'.
There was no problem with my XOOPS 2.0.16 site, but after I upgraded my XOOPS into 2.0.17, after I submitted (or other), news module redirect me to blank page (the URL still ..../modules/news/submit.php)! I'm trying to change again (line 34) into header.php, and it's work! The news module redirect me to XOOPS index page. I changed it again into header2.php, the problem still remain.
Anyone can help me to solve this problem?