-
Task
-
Resolution: Fixed
-
Major
-
3.1.0-dev
-
None
-
None
As naderman pointed out: http://area51.phpbb.com/phpBB/viewtopic.php?f=108&t=42501
Some software, such as Drupal, uses functions with the same name as some functions found in phpBB, which brings up compatibility issues when someone tries to integrate phpBB into Drupal.
Currently, all new functions in the global scope and classes added to 3.1 are required to use the "phpbb_" prefix. However, the functions that are causing errors when integrating with other software are the ones that are currently in phpBB. So, the solution would be to prefix problematic phpBB functions (aka ones that will likely also pop up in other software) with phpbb_.
On a related note, and this would be more up to the MOD Team, I think, but MODs and Extensions for 3.1+ would then be required to use either: phpbb_ or phpbb_%mod% (where %mod% is a unique MOD identifier consisting of lowercase and underscore), so that MODs would not introduce this kind of error in the future.