First of all, there are spelling and grammar errors. Second, the part about "no intention of any revenue" does not apply to me. I'd like to add my own text to the box.Name is a formation suplying services with no intention of any revenue. Anyone who wants to support this formation can do it by donating so that the cost of server, the domain and etc. could be paid of.
After selecting the amount which you want to donate from the menu, you can go on by clicking on the picture of PayPal.
FAQ: [EN] How to ... change the currency in Paypal-Blockonai wrote:1. I'd like to change EUR to USD.
root\language\en\mods\lang_portal.phponai wrote:2. I'd like to edit the text asking for donations
Thanks for the hint, added to our bugtracker:grover66 wrote:If a user has not entered a year for their birthday, their age wont be displayed (as it should be), but a new line character doesn't get sent to separate from the next birthday. So on my portal with some upcoming birthdays they are squashed together on one line.
Favicons is a quite special thing...PiroMaster wrote:I tried solving it by putting the line <LINK REL="SHORTCUT ICON" HREF="blablabla.ico"> in all index.html included in the portal, but Opera still loads the normal favicon.ico....
Do you know how to solve it?
I have no idea anymore how to do...
Code: Select all
case 'logout':
if ($user->data['user_id'] != ANONYMOUS && isset($_GET['sid']) && !is_array($_GET['sid']) && $_GET['sid'] === $user->session_id)
{
$user->session_kill();
$user->session_begin();
$message = $user->lang['LOGOUT_REDIRECT'];
}
else
{
$message = ($user->data['user_id'] == ANONYMOUS) ? $user->lang['LOGOUT_REDIRECT'] : $user->lang['LOGOUT_FAILED'];
}
meta_refresh(3, append_sid("{$phpbb_root_path}index.$phpEx"));
$message = $message . '<br /><br />' . sprintf($user->lang['RETURN_INDEX'], '<a href="' . append_sid("{$phpbb_root_path}index.$phpEx") . '">', '</a> ');
trigger_error($message);
break;
Code: Select all
meta_refresh(3, append_sid("{$phpbb_root_path}index.$phpEx"));
$message = $message . '<br /><br />' . sprintf($user->lang['RETURN_INDEX'], '<a href="' . append_sid("{$phpbb_root_path}index.$phpEx") . '">', '</a> ');
trigger_error($message);
break;