Menu

Minor work on phpBB2 mod

Did some minor work on the phpBB2 mod, here is the "doc" for the module so far. Basically, I just gutted the app for everything that XMS will provide or doesn't need.

/********************************************************/
/* Name: Module phpBB2 */
/* Date Began: 03/16/2005 */
/* Authors: phpBB.org, modified by ShinePoint Corp. */
/* */
/* Revision History: */
/* Module Began: 03/16/2005 */
/********************************************************/

Welcome to the phpBB2 module of XMS. This module is essentially phpBB2, but modified to work with the
XMS data management system. The following is a list of modifications to each file. Using updated versions
of phpBB2 is very likely to break this module.

Modifications:

admin/

- Parts of files used in main module configuration file

-----------------------------------------------------------------------------------------------------------
db/

- Deleted: Directory

-----------------------------------------------------------------------------------------------------------
contrib/

- Deleted: Directory

-----------------------------------------------------------------------------------------------------------
docs/

- Deleted: Directory

-----------------------------------------------------------------------------------------------------------
install/

- Deleted: Directory

-----------------------------------------------------------------------------------------------------------
templates/

- Deleted: Directory

-----------------------------------------------------------------------------------------------------------
language/

- Deleted: Directory

-----------------------------------------------------------------------------------------------------------
includes/auth.php

- Deleted: File

-----------------------------------------------------------------------------------------------------------
includes/bbcode.php

- Deleted: File

-----------------------------------------------------------------------------------------------------------
includes/constants.php

-----------------------------------------------------------------------------------------------------------
includes/db.php

- Deleted: File

-----------------------------------------------------------------------------------------------------------
includes/emailer.php

- Deleted: File

-----------------------------------------------------------------------------------------------------------
includes/functions.php

-----------------------------------------------------------------------------------------------------------
includes/functions_admin.php

-----------------------------------------------------------------------------------------------------------
includes/functions_post.php

- Deleted: Function prepare_message()
- Modified: if (!defined('IN_PHPBB'))
{
die('Hacking attempt');
}

-----------------------------------------------------------------------------------------------------------
includes/functions_search.php

- Deleted: File

-----------------------------------------------------------------------------------------------------------
includes/functions_selects.php

- Deleted: File

-----------------------------------------------------------------------------------------------------------
includes/functions_validate.php

- Deleted: File

-----------------------------------------------------------------------------------------------------------
includes/page_header.php

- Deleted: if ( !defined('IN_PHPBB') )
{
die('Hacking attempt');
}

-----------------------------------------------------------------------------------------------------------
includes/page_tail.php

- Deleted: if ( !defined('IN_PHPBB') )
{
die('Hacking attempt');
}

-----------------------------------------------------------------------------------------------------------
includes/prune.php

- Deleted: if ( !defined('IN_PHPBB') )
{
die("Hacking attempt");
}

-----------------------------------------------------------------------------------------------------------
includes/sessions.php

- Deleted: File

-----------------------------------------------------------------------------------------------------------
includes/smtp.php

- Deleted: File

-----------------------------------------------------------------------------------------------------------
includes/sql_parse.php

- Deleted: File

-----------------------------------------------------------------------------------------------------------
includes/template.php

- Deleted: File

-----------------------------------------------------------------------------------------------------------
includes/topic_review.php

-----------------------------------------------------------------------------------------------------------
includes/usercp_activate.php

- Deleted: File

-----------------------------------------------------------------------------------------------------------
includes/usercp_avatar.php

- Deleted: File

-----------------------------------------------------------------------------------------------------------
includes/usercp_confirm.php

- Deleted: File

-----------------------------------------------------------------------------------------------------------
includes/usercp_email.php

- Deleted: File

-----------------------------------------------------------------------------------------------------------
includes/usercp_register.php

- Deleted: File

-----------------------------------------------------------------------------------------------------------
includes/usercp_sendpasswd.php

- Deleted: File

-----------------------------------------------------------------------------------------------------------
includes/usercp_viewprofile.php

- Deleted: File

-----------------------------------------------------------------------------------------------------------
common.php:

- Deleted: if ( !defined('IN_PHPBB') )
{
die("Hacking attempt");
}
- Modified: $phpbb_root_path to $xms_root_path throughout file

-----------------------------------------------------------------------------------------------------------
extension.inc

- Deleted: File

-----------------------------------------------------------------------------------------------------------
faq.php:

- Deleted: File

-----------------------------------------------------------------------------------------------------------
groupcp.php:

- Deleted: File

-----------------------------------------------------------------------------------------------------------
index.php:

- Deleted: define('IN_PHPBB', true);
- Modified: $phpbb_root_path to $xms_root_path throughout file

-----------------------------------------------------------------------------------------------------------
login.php:

- Deleted: File

-----------------------------------------------------------------------------------------------------------
memberlist.php:

- Deleted: File

-----------------------------------------------------------------------------------------------------------
modcp.php:

- Deleted: File

-----------------------------------------------------------------------------------------------------------
privmsg.php:

- Deleted: File

-----------------------------------------------------------------------------------------------------------
posting.php:

- Deleted: define('IN_PHPBB', true);
- Modified: $phpbb_root_path to $xms_root_path throughout file

-----------------------------------------------------------------------------------------------------------
profile.php:

- Deleted: File

-----------------------------------------------------------------------------------------------------------
search.php:

- Deleted: File

-----------------------------------------------------------------------------------------------------------
viewtopic.php:

- Modified: $phpbb_root_path to $xms_root_path throughout file

-----------------------------------------------------------------------------------------------------------
viewforum.php:

- Deleted: define('IN_PHPBB', true);
- Modified: $phpbb_root_path to $xms_root_path throughout file

Posted by Darkmyztz 2005-03-18

Log in to post a comment.