lefty74 wrote:not the cached file, i meant the ucp_header.html one in your style. sorry, i wasnt very clear
Oh...yea..I have double checked those and have even redone the code edits twice and still get the same result. Maybe I'll just try again.
lefty74 wrote:not the cached file, i meant the ucp_header.html one in your style. sorry, i wasnt very clear
azzam, there is a conflict with the announcement centre mod and the viewtopic birthday mod whcih will be sorted in the next version. this one, however, i take it is either from incorrect editing or from a conflict of a mod that is not yet validated. As such, i see no reason to change any of the code of this mod to be honest as it installs fine on 3.0.4.azzam wrote:When ever i edit changes in ucp.php.Its give me blank pages on manage group and phoogle mod page.
That's a second mod i tried of yours and conflicting with other mods
Hope you will try to help me...
Thank you..
Code: Select all
Enhancements[/size][/list]
I will update this post if I find any compatibility issues I have missed.
Typo
Hi there,azzam wrote:When ever i edit changes in ucp.php.Its give me blank pages on manage group and phoogle mod page.
That's a second mod i tried of yours and conflicting with other mods
Check the same for all the parts of ucp, with doesn't work.OPEN includes/ucp/ucp_goups.php
FINDREPLACE withCode: Select all
include($phpbb_root_path . 'includes/functions_display.' . $phpEx);
Code: Select all
// include($phpbb_root_path . 'includes/functions_display.' . $phpEx);
Code: Select all
// include($phpbb_root_path . 'includes/functions_display.' . $phpEx);
Code: Select all
include_once($phpbb_root_path . 'includes/functions_display.' . $phpEx);
include_once()
The include_once() statement includes and evaluates the specified file during the execution of the script. This is a behavior similar to the include() statement, with the only difference being that if the code from a file has already been included, it will not be included again. As the name suggests, it will be included just once.
include_once() should be used in cases where the same file might be included and evaluated more than once during a particular execution of a script, and you want to be sure that it is included exactly once to avoid problems with function redefinitions, variable value reassignments, etc.
Code: Select all
Find
</li>
<!-- BEGINELSE -->
<li>{L_NO_FRIENDS_OFFLINE}</li>
Add after
</td></tr></table></li>
<!-- BEGINELSE -->
<li>{L_NO_FRIENDS_OFFLINE}</li>
lefty74 wrote: