Actuality event list

Note: We are moving the topics of this forum and it will be deleted at some point

Publish your own request for comments/change or patches for the next version of phpBB. Discuss the contributions and proposals of others. Upcoming releases are 3.2/Rhea and 3.3.
Post Reply
..::Frans::..
Registered User
Posts: 27
Joined: Wed Mar 01, 2006 8:20 am

Actuality event list

Post by ..::Frans::.. »

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

User avatar
nickvergessen
Former Team Member
Posts: 733
Joined: Sun Oct 07, 2007 11:54 am
Location: Stuttgart, Germany
Contact:

Re: Actuality event list

Post by nickvergessen »

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-TeamNo Support via PM

..::Frans::..
Registered User
Posts: 27
Joined: Wed Mar 01, 2006 8:20 am

Re: Actuality event list

Post by ..::Frans::.. »

Thnx nick! ;-)

..::Frans::..
Registered User
Posts: 27
Joined: Wed Mar 01, 2006 8:20 am

Re: Actuality event list

Post by ..::Frans::.. »

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

Code: Select all

                $files[] = $file_info->getFilename();
 
replace with

Code: Select all

            if(strpos($file_info->getFilename(), 'export_events_for_wiki.php') === false )
            {
                $files[] = $file_info->getFilename();
            }
 

Post Reply