I was browsing through the event list on https://wiki.phpbb.com/Event_List and saw that that particular page was last updated, november 19th. Does that mean that the page isn't actual anymore and/or updated with the latest 3.1a3 events that are added constantly??
thnx
Actuality event list
- nickvergessen
- Former Team Member
- Posts: 733
- Joined: Sun Oct 07, 2007 11:54 am
- Location: Stuttgart, Germany
- Contact:
Re: Actuality event list
The list is updated when we make a new release, using the following script: https://github.com/phpbb/phpbb/blob/dev ... r_wiki.php
Member of the Development-Team — No Support via PM
-
- Registered User
- Posts: 27
- Joined: Wed Mar 01, 2006 8:20 am
Re: Actuality event list
Thnx nick!
-
- Registered User
- Posts: 27
- Joined: Wed Mar 01, 2006 8:20 am
Re: Actuality event list
Generated myself a new list but there is a problem with the code.
If you run the script, a fatal exception occurs @ line 128, reason is a logical one, it also searches itself for the string 'phpbb_dispatcher->trigger_event('"', finds it but doesn't find an array associated with the event.
Solution:
Find
replace with
If you run the script, a fatal exception occurs @ line 128, reason is a logical one, it also searches itself for the string 'phpbb_dispatcher->trigger_event('"', finds it but doesn't find an array associated with the event.
Solution:
Find
Code: Select all
$files[] = $file_info->getFilename();
Code: Select all
if(strpos($file_info->getFilename(), 'export_events_for_wiki.php') === false )
{
$files[] = $file_info->getFilename();
}