├── .gitignore ├── .htaccess ├── README.md ├── action.php ├── activity.php ├── admin_dashboard.php ├── back_up_id.php ├── ban.php ├── bans.php ├── bulletins.php ├── cache └── .htaccess ├── cms.php ├── cms_edit.php ├── config ├── config_preview.php ├── default_config.php └── default_dashboard.php ├── dashboard.php ├── date_and_time.php ├── defcon.php ├── drop_id.php ├── edit_ignore_list.php ├── exterminate.php ├── failed_postings.php ├── favicon.png ├── history.php ├── hot_topics.php ├── img └── .gitignore ├── includes ├── bootstrap.php ├── class.cache.php ├── class.database.php ├── class.error.php ├── class.language.php ├── class.paginate.php ├── class.parser.php ├── class.permission.php ├── class.table.php ├── class.template.php ├── class.topic.php ├── class.upload.php ├── functions.php ├── recaptcha.php ├── template.ajax.php ├── template.default.php └── template.fallback.php ├── index.php ├── install.php ├── ip_address.php ├── javascript ├── ajax.js ├── img │ └── loading.gif ├── main.js ├── polls.js └── thickbox.js ├── lang └── en.php ├── maintenance.php ├── manage_permissions.php ├── merge.php ├── message_edit.php ├── message_manager.php ├── mod_log.php ├── mod_reason.php ├── notepad.php ├── pm.php ├── pm_compose.php ├── pm_inbox.php ├── post.php ├── profile.php ├── recover_id_by_email.php ├── replies.php ├── report.php ├── reports.php ├── restore_id.php ├── search.php ├── statistics.php ├── stuff.php ├── style ├── ajax.css ├── close.png ├── exclamation.png ├── loading.gif ├── main.css ├── mobile.css ├── search.png ├── themes │ ├── Blue.css │ ├── Cloudy.css │ ├── Gmail Cloudy.css │ ├── Gmail Mono.css │ ├── Lime.css │ ├── Mint.css │ ├── Modern.css │ ├── Mono.css │ ├── Purple.css │ ├── Sand.css │ ├── Yotsuba.css │ └── fade.png └── thickbox.css ├── style_edit.php ├── style_gallery.php ├── style_load.php ├── style_view.php ├── thumbs └── .gitignore ├── topic.php ├── topic_reply.php ├── topic_trivia.php ├── trash_can.php ├── url_handler.php └── watchlist.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/.gitignore -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/.htaccess -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/README.md -------------------------------------------------------------------------------- /action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/action.php -------------------------------------------------------------------------------- /activity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/activity.php -------------------------------------------------------------------------------- /admin_dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/admin_dashboard.php -------------------------------------------------------------------------------- /back_up_id.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/back_up_id.php -------------------------------------------------------------------------------- /ban.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/ban.php -------------------------------------------------------------------------------- /bans.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/bans.php -------------------------------------------------------------------------------- /bulletins.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/bulletins.php -------------------------------------------------------------------------------- /cache/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/cache/.htaccess -------------------------------------------------------------------------------- /cms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/cms.php -------------------------------------------------------------------------------- /cms_edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/cms_edit.php -------------------------------------------------------------------------------- /config/config_preview.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/config/config_preview.php -------------------------------------------------------------------------------- /config/default_config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/config/default_config.php -------------------------------------------------------------------------------- /config/default_dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/config/default_dashboard.php -------------------------------------------------------------------------------- /dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/dashboard.php -------------------------------------------------------------------------------- /date_and_time.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/date_and_time.php -------------------------------------------------------------------------------- /defcon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/defcon.php -------------------------------------------------------------------------------- /drop_id.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/drop_id.php -------------------------------------------------------------------------------- /edit_ignore_list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/edit_ignore_list.php -------------------------------------------------------------------------------- /exterminate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/exterminate.php -------------------------------------------------------------------------------- /failed_postings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/failed_postings.php -------------------------------------------------------------------------------- /favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/favicon.png -------------------------------------------------------------------------------- /history.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/history.php -------------------------------------------------------------------------------- /hot_topics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/hot_topics.php -------------------------------------------------------------------------------- /img/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/img/.gitignore -------------------------------------------------------------------------------- /includes/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/includes/bootstrap.php -------------------------------------------------------------------------------- /includes/class.cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/includes/class.cache.php -------------------------------------------------------------------------------- /includes/class.database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/includes/class.database.php -------------------------------------------------------------------------------- /includes/class.error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/includes/class.error.php -------------------------------------------------------------------------------- /includes/class.language.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/includes/class.language.php -------------------------------------------------------------------------------- /includes/class.paginate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/includes/class.paginate.php -------------------------------------------------------------------------------- /includes/class.parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/includes/class.parser.php -------------------------------------------------------------------------------- /includes/class.permission.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/includes/class.permission.php -------------------------------------------------------------------------------- /includes/class.table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/includes/class.table.php -------------------------------------------------------------------------------- /includes/class.template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/includes/class.template.php -------------------------------------------------------------------------------- /includes/class.topic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/includes/class.topic.php -------------------------------------------------------------------------------- /includes/class.upload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/includes/class.upload.php -------------------------------------------------------------------------------- /includes/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/includes/functions.php -------------------------------------------------------------------------------- /includes/recaptcha.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/includes/recaptcha.php -------------------------------------------------------------------------------- /includes/template.ajax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/includes/template.ajax.php -------------------------------------------------------------------------------- /includes/template.default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/includes/template.default.php -------------------------------------------------------------------------------- /includes/template.fallback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/includes/template.fallback.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/index.php -------------------------------------------------------------------------------- /install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/install.php -------------------------------------------------------------------------------- /ip_address.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/ip_address.php -------------------------------------------------------------------------------- /javascript/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/javascript/ajax.js -------------------------------------------------------------------------------- /javascript/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/javascript/img/loading.gif -------------------------------------------------------------------------------- /javascript/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/javascript/main.js -------------------------------------------------------------------------------- /javascript/polls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/javascript/polls.js -------------------------------------------------------------------------------- /javascript/thickbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/javascript/thickbox.js -------------------------------------------------------------------------------- /lang/en.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/lang/en.php -------------------------------------------------------------------------------- /maintenance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/maintenance.php -------------------------------------------------------------------------------- /manage_permissions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/manage_permissions.php -------------------------------------------------------------------------------- /merge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/merge.php -------------------------------------------------------------------------------- /message_edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/message_edit.php -------------------------------------------------------------------------------- /message_manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/message_manager.php -------------------------------------------------------------------------------- /mod_log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/mod_log.php -------------------------------------------------------------------------------- /mod_reason.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/mod_reason.php -------------------------------------------------------------------------------- /notepad.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/notepad.php -------------------------------------------------------------------------------- /pm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/pm.php -------------------------------------------------------------------------------- /pm_compose.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/pm_compose.php -------------------------------------------------------------------------------- /pm_inbox.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/pm_inbox.php -------------------------------------------------------------------------------- /post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/post.php -------------------------------------------------------------------------------- /profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/profile.php -------------------------------------------------------------------------------- /recover_id_by_email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/recover_id_by_email.php -------------------------------------------------------------------------------- /replies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/replies.php -------------------------------------------------------------------------------- /report.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/report.php -------------------------------------------------------------------------------- /reports.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/reports.php -------------------------------------------------------------------------------- /restore_id.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/restore_id.php -------------------------------------------------------------------------------- /search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/search.php -------------------------------------------------------------------------------- /statistics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/statistics.php -------------------------------------------------------------------------------- /stuff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/stuff.php -------------------------------------------------------------------------------- /style/ajax.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/style/ajax.css -------------------------------------------------------------------------------- /style/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/style/close.png -------------------------------------------------------------------------------- /style/exclamation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/style/exclamation.png -------------------------------------------------------------------------------- /style/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/style/loading.gif -------------------------------------------------------------------------------- /style/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/style/main.css -------------------------------------------------------------------------------- /style/mobile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/style/mobile.css -------------------------------------------------------------------------------- /style/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/style/search.png -------------------------------------------------------------------------------- /style/themes/Blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/style/themes/Blue.css -------------------------------------------------------------------------------- /style/themes/Cloudy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/style/themes/Cloudy.css -------------------------------------------------------------------------------- /style/themes/Gmail Cloudy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/style/themes/Gmail Cloudy.css -------------------------------------------------------------------------------- /style/themes/Gmail Mono.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/style/themes/Gmail Mono.css -------------------------------------------------------------------------------- /style/themes/Lime.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/style/themes/Lime.css -------------------------------------------------------------------------------- /style/themes/Mint.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/style/themes/Mint.css -------------------------------------------------------------------------------- /style/themes/Modern.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/style/themes/Modern.css -------------------------------------------------------------------------------- /style/themes/Mono.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/style/themes/Mono.css -------------------------------------------------------------------------------- /style/themes/Purple.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/style/themes/Purple.css -------------------------------------------------------------------------------- /style/themes/Sand.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/style/themes/Sand.css -------------------------------------------------------------------------------- /style/themes/Yotsuba.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/style/themes/Yotsuba.css -------------------------------------------------------------------------------- /style/themes/fade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/style/themes/fade.png -------------------------------------------------------------------------------- /style/thickbox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/style/thickbox.css -------------------------------------------------------------------------------- /style_edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/style_edit.php -------------------------------------------------------------------------------- /style_gallery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/style_gallery.php -------------------------------------------------------------------------------- /style_load.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/style_load.php -------------------------------------------------------------------------------- /style_view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/style_view.php -------------------------------------------------------------------------------- /thumbs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/thumbs/.gitignore -------------------------------------------------------------------------------- /topic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/topic.php -------------------------------------------------------------------------------- /topic_reply.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/topic_reply.php -------------------------------------------------------------------------------- /topic_trivia.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/topic_trivia.php -------------------------------------------------------------------------------- /trash_can.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/trash_can.php -------------------------------------------------------------------------------- /url_handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/url_handler.php -------------------------------------------------------------------------------- /watchlist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalloway/MiniBBS/HEAD/watchlist.php --------------------------------------------------------------------------------