| Todo Functions |
| install\add_bots |
We might want to look at sharing the bot list between the install code and this code for consistancy |
| install\extract_variables_from_file |
As noted by Xore we need to look at this from a security perspective |
| install\make_unique_filename |
naderman, can you check that this works with the new search plugins as it's use is currently disabled (and thus untested)function search_indexing($message = ''){ global $fulltext_search, $convert_row; if (!isset($convert_row['post_id'])) { return; } if (!$message) { if (!isset($convert_row['message'])) { return; } $message = $convert_row['message']; } $title = (isset($convert_row['title'])) ? $convert_row['title'] : ''; $fulltext_search->index('post', $convert_row['post_id'], $message, $title, $convert_row['poster_id'], $convert_row['forum_id']);} |
| install\phpbb_prepare_message |
What do we want to do about HTML in messages - currently it gets converted to the entities, but there may be some objections to this |
| install\remote_avatar_dims |
Look at the option of allowing the user to decide whether this is called or to force the dimensions |
| install\update_dynamic_config |
Confirm that this updates all relevant values since it has not necessarily been kept in sync with all changes |
| phpBB3\submit_post |
Split up and create lightweight, simple API for this. |