├── INSTALL ├── addon.php ├── admin.php ├── ajax.php ├── cache └── .htaccess ├── changes.php ├── common.php ├── control.php ├── css.php ├── docs ├── CODING-STANDARDS ├── SVN-RULES ├── blog_howto.txt ├── compatibility_changes.txt ├── creating_custom_userfields.txt ├── creating_mail_messages.txt ├── creating_mods.txt ├── creating_templates.txt ├── docbook │ ├── README │ ├── admin │ │ ├── index.xml │ │ ├── part_features.xml │ │ ├── part_installation.xml │ │ ├── part_modules.xml │ │ └── part_upgrade.xml │ ├── bookinfo.xml │ ├── developer │ │ ├── index.xml │ │ ├── mkhookdocs │ │ ├── part_hooks.xml │ │ ├── part_modules.xml │ │ └── part_templates.xml │ ├── faq │ │ ├── index.xml │ │ ├── part_faq_features.xml │ │ ├── part_faq_modules.xml │ │ └── part_faq_troubleshooting.xml │ ├── part_preface.xml │ └── user │ │ └── index.xml ├── example-static-page.php ├── example_mods │ ├── example_check_post │ │ ├── example_check_post.php │ │ └── info.txt │ ├── example_language │ │ ├── example_language.php │ │ ├── info.txt │ │ └── lang │ │ │ ├── dutch.php │ │ │ ├── english.php │ │ │ ├── french.php │ │ │ └── german.php │ ├── example_multiplehooks │ │ ├── example_multiplehooks.php │ │ └── info.txt │ ├── example_settings │ │ ├── example_settings.php │ │ ├── info.txt │ │ └── settings.php │ └── helloworld.php ├── faq.txt ├── html │ ├── Makefile │ ├── admin │ │ ├── Makefile │ │ └── README │ ├── api │ │ ├── Makefile │ │ └── README │ ├── developer │ │ ├── Makefile │ │ └── README │ ├── faq │ │ ├── Makefile │ │ └── README │ ├── images │ │ ├── firefox_80x15.png │ │ ├── important.gif │ │ ├── logo.png │ │ ├── menu-background-highlight.png │ │ ├── menu-background.png │ │ ├── note.png │ │ ├── php_power.png │ │ └── top-background.png │ ├── index.html-default │ ├── index.html-phorum.org │ ├── javascript │ │ ├── Makefile │ │ ├── README │ │ └── build │ │ │ ├── build │ │ │ ├── ext-doc │ │ │ ├── ext-doc.jar │ │ │ ├── lib │ │ │ │ └── commons-cli-1.1.jar │ │ │ └── template │ │ │ │ └── phorum │ │ │ │ ├── index.html │ │ │ │ ├── license.txt │ │ │ │ ├── resources │ │ │ │ ├── TabCloseMenu.js │ │ │ │ ├── accordian.gif │ │ │ │ ├── block-bg.gif │ │ │ │ ├── block-bottom.gif │ │ │ │ ├── block-top.gif │ │ │ │ ├── class.gif │ │ │ │ ├── cmp.gif │ │ │ │ ├── collapse-all.gif │ │ │ │ ├── collapse-bg.gif │ │ │ │ ├── collapser.css │ │ │ │ ├── config.gif │ │ │ │ ├── css │ │ │ │ │ └── ext-all.css │ │ │ │ ├── docs.css │ │ │ │ ├── docs.gif │ │ │ │ ├── docs.js │ │ │ │ ├── elbow-end.gif │ │ │ │ ├── event.gif │ │ │ │ ├── example.gif │ │ │ │ ├── expand-all.gif │ │ │ │ ├── expand-bg-over.gif │ │ │ │ ├── expand-bg.gif │ │ │ │ ├── expand-members.gif │ │ │ │ ├── ext-all.js │ │ │ │ ├── ext-base.js │ │ │ │ ├── extanim32.gif │ │ │ │ ├── extanim64.gif │ │ │ │ ├── extjs.gif │ │ │ │ ├── fav.gif │ │ │ │ ├── folder.gif │ │ │ │ ├── folder_open.gif │ │ │ │ ├── form.png │ │ │ │ ├── forum.gif │ │ │ │ ├── hd-bg.gif │ │ │ │ ├── hide-inherited.gif │ │ │ │ ├── icon-grid.gif │ │ │ │ ├── images │ │ │ │ │ └── default │ │ │ │ │ │ ├── box │ │ │ │ │ │ ├── corners-blue.gif │ │ │ │ │ │ ├── corners.gif │ │ │ │ │ │ ├── l-blue.gif │ │ │ │ │ │ ├── l.gif │ │ │ │ │ │ ├── r-blue.gif │ │ │ │ │ │ ├── r.gif │ │ │ │ │ │ ├── tb-blue.gif │ │ │ │ │ │ └── tb.gif │ │ │ │ │ │ ├── button │ │ │ │ │ │ ├── btn-arrow.gif │ │ │ │ │ │ └── btn-sprite.gif │ │ │ │ │ │ ├── dd │ │ │ │ │ │ ├── drop-add.gif │ │ │ │ │ │ ├── drop-no.gif │ │ │ │ │ │ └── drop-yes.gif │ │ │ │ │ │ ├── editor │ │ │ │ │ │ └── tb-sprite.gif │ │ │ │ │ │ ├── form │ │ │ │ │ │ ├── checkbox.gif │ │ │ │ │ │ ├── clear-trigger.gif │ │ │ │ │ │ ├── clear-trigger.psd │ │ │ │ │ │ ├── date-trigger.gif │ │ │ │ │ │ ├── date-trigger.psd │ │ │ │ │ │ ├── error-tip-corners.gif │ │ │ │ │ │ ├── exclamation.gif │ │ │ │ │ │ ├── radio.gif │ │ │ │ │ │ ├── search-trigger.gif │ │ │ │ │ │ ├── search-trigger.psd │ │ │ │ │ │ ├── text-bg.gif │ │ │ │ │ │ ├── trigger-tpl.gif │ │ │ │ │ │ ├── trigger.gif │ │ │ │ │ │ └── trigger.psd │ │ │ │ │ │ ├── gradient-bg.gif │ │ │ │ │ │ ├── grid │ │ │ │ │ │ ├── arrow-left-white.gif │ │ │ │ │ │ ├── arrow-right-white.gif │ │ │ │ │ │ ├── col-move-bottom.gif │ │ │ │ │ │ ├── col-move-top.gif │ │ │ │ │ │ ├── columns.gif │ │ │ │ │ │ ├── dirty.gif │ │ │ │ │ │ ├── done.gif │ │ │ │ │ │ ├── drop-no.gif │ │ │ │ │ │ ├── drop-yes.gif │ │ │ │ │ │ ├── footer-bg.gif │ │ │ │ │ │ ├── grid-blue-hd.gif │ │ │ │ │ │ ├── grid-blue-split.gif │ │ │ │ │ │ ├── grid-hrow.gif │ │ │ │ │ │ ├── grid-loading.gif │ │ │ │ │ │ ├── grid-split.gif │ │ │ │ │ │ ├── grid-vista-hd.gif │ │ │ │ │ │ ├── grid3-hd-btn.gif │ │ │ │ │ │ ├── grid3-hrow-over.gif │ │ │ │ │ │ ├── grid3-hrow.gif │ │ │ │ │ │ ├── grid3-special-col-bg.gif │ │ │ │ │ │ ├── grid3-special-col-sel-bg.gif │ │ │ │ │ │ ├── group-by.gif │ │ │ │ │ │ ├── group-expand-sprite.gif │ │ │ │ │ │ ├── hd-pop.gif │ │ │ │ │ │ ├── hmenu-asc.gif │ │ │ │ │ │ ├── hmenu-desc.gif │ │ │ │ │ │ ├── hmenu-lock.gif │ │ │ │ │ │ ├── hmenu-lock.png │ │ │ │ │ │ ├── hmenu-unlock.gif │ │ │ │ │ │ ├── hmenu-unlock.png │ │ │ │ │ │ ├── invalid_line.gif │ │ │ │ │ │ ├── loading.gif │ │ │ │ │ │ ├── mso-hd.gif │ │ │ │ │ │ ├── nowait.gif │ │ │ │ │ │ ├── page-first-disabled.gif │ │ │ │ │ │ ├── page-first.gif │ │ │ │ │ │ ├── page-last-disabled.gif │ │ │ │ │ │ ├── page-last.gif │ │ │ │ │ │ ├── page-next-disabled.gif │ │ │ │ │ │ ├── page-next.gif │ │ │ │ │ │ ├── page-prev-disabled.gif │ │ │ │ │ │ ├── page-prev.gif │ │ │ │ │ │ ├── pick-button.gif │ │ │ │ │ │ ├── refresh.gif │ │ │ │ │ │ ├── row-check-sprite.gif │ │ │ │ │ │ ├── row-expand-sprite.gif │ │ │ │ │ │ ├── row-over.gif │ │ │ │ │ │ ├── row-sel.gif │ │ │ │ │ │ ├── sort_asc.gif │ │ │ │ │ │ ├── sort_desc.gif │ │ │ │ │ │ └── wait.gif │ │ │ │ │ │ ├── layout │ │ │ │ │ │ ├── collapse.gif │ │ │ │ │ │ ├── expand.gif │ │ │ │ │ │ ├── gradient-bg.gif │ │ │ │ │ │ ├── mini-bottom.gif │ │ │ │ │ │ ├── mini-left.gif │ │ │ │ │ │ ├── mini-right.gif │ │ │ │ │ │ ├── mini-top.gif │ │ │ │ │ │ ├── ns-collapse.gif │ │ │ │ │ │ ├── ns-expand.gif │ │ │ │ │ │ ├── panel-close.gif │ │ │ │ │ │ ├── panel-title-bg.gif │ │ │ │ │ │ ├── panel-title-light-bg.gif │ │ │ │ │ │ ├── stick.gif │ │ │ │ │ │ ├── stuck.gif │ │ │ │ │ │ ├── tab-close-on.gif │ │ │ │ │ │ └── tab-close.gif │ │ │ │ │ │ ├── menu │ │ │ │ │ │ ├── checked.gif │ │ │ │ │ │ ├── group-checked.gif │ │ │ │ │ │ ├── item-over.gif │ │ │ │ │ │ ├── menu-parent.gif │ │ │ │ │ │ ├── menu.gif │ │ │ │ │ │ └── unchecked.gif │ │ │ │ │ │ ├── panel │ │ │ │ │ │ ├── corners-sprite.gif │ │ │ │ │ │ ├── left-right.gif │ │ │ │ │ │ ├── light-hd.gif │ │ │ │ │ │ ├── tool-sprite-tpl.gif │ │ │ │ │ │ ├── tool-sprites.gif │ │ │ │ │ │ ├── tools-sprites-trans.gif │ │ │ │ │ │ ├── top-bottom.gif │ │ │ │ │ │ ├── top-bottom.png │ │ │ │ │ │ ├── white-corners-sprite.gif │ │ │ │ │ │ ├── white-left-right.gif │ │ │ │ │ │ └── white-top-bottom.gif │ │ │ │ │ │ ├── progress │ │ │ │ │ │ └── progress-bg.gif │ │ │ │ │ │ ├── qtip │ │ │ │ │ │ ├── bg.gif │ │ │ │ │ │ ├── close.gif │ │ │ │ │ │ └── tip-sprite.gif │ │ │ │ │ │ ├── s.gif │ │ │ │ │ │ ├── shadow-c.png │ │ │ │ │ │ ├── shadow-c.psd │ │ │ │ │ │ ├── shadow-lr.png │ │ │ │ │ │ ├── shadow.png │ │ │ │ │ │ ├── shared │ │ │ │ │ │ ├── blue-loading.gif │ │ │ │ │ │ ├── calendar.gif │ │ │ │ │ │ ├── glass-bg.gif │ │ │ │ │ │ ├── hd-sprite.gif │ │ │ │ │ │ ├── large-loading.gif │ │ │ │ │ │ ├── left-btn.gif │ │ │ │ │ │ ├── loading-balls.gif │ │ │ │ │ │ ├── right-btn.gif │ │ │ │ │ │ └── warning.gif │ │ │ │ │ │ ├── sizer │ │ │ │ │ │ ├── e-handle-dark.gif │ │ │ │ │ │ ├── e-handle.gif │ │ │ │ │ │ ├── ne-handle-dark.gif │ │ │ │ │ │ ├── ne-handle.gif │ │ │ │ │ │ ├── nw-handle-dark.gif │ │ │ │ │ │ ├── nw-handle.gif │ │ │ │ │ │ ├── s-handle-dark.gif │ │ │ │ │ │ ├── s-handle.gif │ │ │ │ │ │ ├── se-handle-dark.gif │ │ │ │ │ │ ├── se-handle.gif │ │ │ │ │ │ ├── square.gif │ │ │ │ │ │ ├── sw-handle-dark.gif │ │ │ │ │ │ └── sw-handle.gif │ │ │ │ │ │ ├── slider │ │ │ │ │ │ ├── slider-bg.png │ │ │ │ │ │ ├── slider-thumb.png │ │ │ │ │ │ ├── slider-v-bg.png │ │ │ │ │ │ └── slider-v-thumb.png │ │ │ │ │ │ ├── tabs │ │ │ │ │ │ ├── scroll-left.gif │ │ │ │ │ │ ├── scroll-right.gif │ │ │ │ │ │ ├── scroller-bg.gif │ │ │ │ │ │ ├── tab-btm-inactive-left-bg.gif │ │ │ │ │ │ ├── tab-btm-inactive-right-bg.gif │ │ │ │ │ │ ├── tab-btm-left-bg.gif │ │ │ │ │ │ ├── tab-btm-right-bg.gif │ │ │ │ │ │ ├── tab-close.gif │ │ │ │ │ │ ├── tab-strip-bg.gif │ │ │ │ │ │ ├── tab-strip-bg.png │ │ │ │ │ │ ├── tab-strip-btm-bg.gif │ │ │ │ │ │ └── tabs-sprite.gif │ │ │ │ │ │ ├── toolbar │ │ │ │ │ │ ├── bg.gif │ │ │ │ │ │ ├── btn-arrow-light.gif │ │ │ │ │ │ ├── btn-arrow.gif │ │ │ │ │ │ ├── btn-over-bg.gif │ │ │ │ │ │ ├── gray-bg.gif │ │ │ │ │ │ ├── tb-bg.gif │ │ │ │ │ │ └── tb-btn-sprite.gif │ │ │ │ │ │ ├── tree │ │ │ │ │ │ ├── arrows.gif │ │ │ │ │ │ ├── drop-add.gif │ │ │ │ │ │ ├── drop-between.gif │ │ │ │ │ │ ├── drop-no.gif │ │ │ │ │ │ ├── drop-over.gif │ │ │ │ │ │ ├── drop-under.gif │ │ │ │ │ │ ├── drop-yes.gif │ │ │ │ │ │ ├── elbow-end-minus-nl.gif │ │ │ │ │ │ ├── elbow-end-minus.gif │ │ │ │ │ │ ├── elbow-end-plus-nl.gif │ │ │ │ │ │ ├── elbow-end-plus.gif │ │ │ │ │ │ ├── elbow-end.gif │ │ │ │ │ │ ├── elbow-line.gif │ │ │ │ │ │ ├── elbow-minus-nl.gif │ │ │ │ │ │ ├── elbow-minus.gif │ │ │ │ │ │ ├── elbow-plus-nl.gif │ │ │ │ │ │ ├── elbow-plus.gif │ │ │ │ │ │ ├── elbow.gif │ │ │ │ │ │ ├── folder-open.gif │ │ │ │ │ │ ├── folder.gif │ │ │ │ │ │ ├── leaf.gif │ │ │ │ │ │ ├── loading.gif │ │ │ │ │ │ └── s.gif │ │ │ │ │ │ └── window │ │ │ │ │ │ ├── icon-error.gif │ │ │ │ │ │ ├── icon-info.gif │ │ │ │ │ │ ├── icon-question.gif │ │ │ │ │ │ ├── icon-warning.gif │ │ │ │ │ │ ├── left-corners.png │ │ │ │ │ │ ├── left-corners.psd │ │ │ │ │ │ ├── left-right.png │ │ │ │ │ │ ├── left-right.psd │ │ │ │ │ │ ├── right-corners.png │ │ │ │ │ │ ├── right-corners.psd │ │ │ │ │ │ ├── top-bottom.png │ │ │ │ │ │ └── top-bottom.psd │ │ │ │ ├── inherited.gif │ │ │ │ ├── member-collapsed.gif │ │ │ │ ├── member-expanded.gif │ │ │ │ ├── member-hover.gif │ │ │ │ ├── method.gif │ │ │ │ ├── minus.gif │ │ │ │ ├── pkg-closed.gif │ │ │ │ ├── pkg-open.gif │ │ │ │ ├── pkg.gif │ │ │ │ ├── plus.gif │ │ │ │ ├── prettify │ │ │ │ │ ├── prettify.css │ │ │ │ │ └── prettify.js │ │ │ │ ├── print.css │ │ │ │ ├── print.gif │ │ │ │ ├── prop.gif │ │ │ │ ├── reset.css │ │ │ │ ├── s.gif │ │ │ │ ├── static.gif │ │ │ │ ├── style.css │ │ │ │ ├── tabs.gif │ │ │ │ ├── tree-bg.gif │ │ │ │ ├── wel-bg.gif │ │ │ │ ├── welcome-bg.gif │ │ │ │ └── welcome.css │ │ │ │ ├── source-wrap.html │ │ │ │ ├── template.xml │ │ │ │ ├── tpl │ │ │ │ ├── class.xsl │ │ │ │ └── tree.xsl │ │ │ │ └── welcome.html │ │ │ └── phorum-project.xml │ ├── navigation.css-default │ ├── navigation.css-phorum.org │ ├── navigation.html-default │ ├── navigation.html-phorum.org │ ├── phorum_docbook.css │ ├── phorum_docbook.xsl │ └── user │ │ ├── Makefile │ │ └── README ├── install.txt ├── license.txt ├── pdf │ └── Makefile ├── performance.txt ├── permissions.txt └── upgrade.txt ├── features.txt ├── feed.php ├── file.php ├── follow.php ├── images ├── add.png ├── alert.gif ├── arrow_down.png ├── arrow_up.png ├── button.png ├── close.gif ├── comment.png ├── comments.png ├── delete.png ├── folder.png ├── folder_up.png ├── forum.png ├── qmark.gif └── trans.gif ├── include ├── .htaccess ├── admin │ ├── PhorumAdminMenu.php │ ├── PhorumInputForm.php │ ├── badwords.php │ ├── banlist.php │ ├── cache.php │ ├── cache_purge.php │ ├── css │ │ ├── .htaccess │ │ └── default.css │ ├── customprofile.php │ ├── default.php │ ├── deletefolder.php │ ├── deleteforum.php │ ├── editfolder.php │ ├── editforum.php │ ├── file_purge.php │ ├── footer.php │ ├── forum_defaults.php │ ├── functions.php │ ├── groups.php │ ├── header.php │ ├── index.php │ ├── install.php │ ├── login.php │ ├── logout.php │ ├── manage_languages.php │ ├── message_prune.php │ ├── mods.php │ ├── modsettings.php │ ├── newfolder.php │ ├── newforum.php │ ├── rebuild.php │ ├── sanity_checks.php │ ├── sanity_checks │ │ ├── cache.php │ │ ├── database.php │ │ ├── distro.php │ │ ├── language.php │ │ ├── modules.php │ │ ├── modules_filenames.php │ │ ├── php_safety.php │ │ ├── php_version.php │ │ ├── settings.php │ │ └── upload_limits.php │ ├── settings.php │ ├── status.php │ ├── tokenmissing.php │ ├── update_display_names.php │ ├── upgrade.php │ ├── users.php │ └── version.php ├── ajax │ ├── call.checkpm.php │ ├── call.format.php │ ├── call.getforumsettings.php │ ├── call.getrecentmessages.php │ ├── call.helloworld.php │ ├── call.markread.php │ └── examples.php ├── api.php ├── api │ ├── ban.php │ ├── buffer.php │ ├── cache.php │ ├── cache │ │ ├── apc.php │ │ ├── file.php │ │ ├── memcached.php │ │ └── null.php │ ├── charset.php │ ├── constants.php │ ├── custom_field.php │ ├── deprecated.php │ ├── dev.php │ ├── diff.php │ ├── error.php │ ├── error │ │ ├── backtrace.php │ │ └── database.php │ ├── examples │ │ ├── file_delete.php │ │ ├── file_store.php │ │ ├── user_auth_module.php │ │ └── user_login.php │ ├── feed.php │ ├── feed │ │ ├── atom.php │ │ ├── html.php │ │ ├── js.php │ │ └── rss.php │ ├── file.php │ ├── format.php │ ├── format │ │ ├── censor.php │ │ ├── forums.php │ │ ├── htmlspecialchars.php │ │ ├── messages.php │ │ ├── users.php │ │ └── wordwrap.php │ ├── forums.php │ ├── generate.php │ ├── hook.php │ ├── http_get.php │ ├── image.php │ ├── json.php │ ├── lang.php │ ├── mail.php │ ├── mail │ │ ├── message_moderate.php │ │ ├── message_notify.php │ │ └── pm_notify.php │ ├── message.php │ ├── modules.php │ ├── newflags.php │ ├── output.php │ ├── read_file.php │ ├── redirect.php │ ├── request.php │ ├── sign.php │ ├── system.php │ ├── template.php │ ├── template │ │ └── compile.php │ ├── thread.php │ ├── tree.php │ ├── url.php │ ├── user.php │ └── write_file.php ├── config │ ├── .gitignore │ ├── cache.php.sample │ └── database.php.sample ├── controlcenter │ ├── email.php │ ├── files.php │ ├── forum.php │ ├── groupmod.php │ ├── groups.php │ ├── messages.php │ ├── password.php │ ├── privacy.php │ ├── sig.php │ ├── subthreads.php │ ├── summary.php │ ├── user.php │ └── users.php ├── db │ ├── PhorumDB.php │ ├── PhorumMysqlDB.php │ ├── PhorumMysqlDB │ │ ├── mysql.php │ │ ├── mysqli.php │ │ └── mysqli_replication.php │ ├── PhorumPostgresqlDB.php │ ├── PhorumSqliteDB.php │ ├── functional_layer.php │ └── upgrade │ │ ├── mysql-patches │ │ ├── 2006090700.php │ │ ├── 2006090701.php │ │ ├── 2007042401.php │ │ ├── 2007042402.php │ │ ├── 2007042700.php │ │ ├── 2007050300.php │ │ ├── 2007050301.php │ │ ├── 2007050302.php │ │ ├── 2007050600.php │ │ ├── 2007050601.php │ │ ├── 2007050603.php │ │ ├── 2007050900.php │ │ ├── 2007050901.php │ │ ├── 2007050902.php │ │ ├── 2007052400.php │ │ ├── 2007060700.php │ │ ├── 2007061900.php │ │ ├── 2007071900.php │ │ ├── 2007090500.php │ │ ├── 2007090900.php │ │ ├── 2007090901.php │ │ ├── 2007090902.php │ │ ├── 2007091000.php │ │ ├── 2007092900.php │ │ ├── 2007100800.php │ │ ├── 2007100801.php │ │ ├── 2007100802.php │ │ ├── 2007101400.php │ │ ├── 2007102600.php │ │ ├── 2007102700.php │ │ ├── 2007110300.php │ │ ├── 2007112400.php │ │ ├── 2007112900.php │ │ ├── 2008012400.php │ │ ├── 2008012401.php │ │ ├── 2008012500.php │ │ ├── 2008021900.php │ │ ├── 2008031400.php │ │ ├── 2008062500.php │ │ ├── 2008091900.php │ │ ├── 2009021901.php │ │ └── 2012030800.php │ │ └── mysql │ │ ├── 2003011801.php │ │ ├── 2003060100.php │ │ ├── 2003060600.php │ │ ├── 2003072000.php │ │ ├── 2003082100.php │ │ ├── 2003091700.php │ │ ├── 2003092700.php │ │ ├── 2003103000.php │ │ ├── 2003112001.php │ │ ├── 2003112500.php │ │ ├── 2004012400.php │ │ ├── 2004021200.php │ │ ├── 2004031000.php │ │ ├── 2004031200.php │ │ ├── 2004031201.php │ │ ├── 2004031700.php │ │ ├── 2004032900.php │ │ ├── 2004032901.php │ │ ├── 2004052900.php │ │ ├── 2004061300.php │ │ ├── 2004061400.php │ │ ├── 2004071000.php │ │ ├── 2004071100.php │ │ ├── 2004071500.php │ │ ├── 2004071900.php │ │ ├── 2004073100.php │ │ ├── 2004080300.php │ │ ├── 2004080600.php │ │ ├── 2004080601.php │ │ ├── 2004080700.php │ │ ├── 2004080800.php │ │ ├── 2004081900.php │ │ ├── 2004090700.php │ │ ├── 2004100700.php │ │ ├── 2004112600.php │ │ ├── 2004112601.php │ │ ├── 2004112602.php │ │ ├── 2004112603.php │ │ ├── 2004112800.php │ │ ├── 2005022800.php │ │ ├── 2005031900.php │ │ ├── 2005062000.php │ │ ├── 2005062600.php │ │ ├── 2005070500.php │ │ ├── 2005071200.php │ │ ├── 2005072600.php │ │ ├── 2005081000.php │ │ ├── 2005082300.php │ │ ├── 2005082800.php │ │ ├── 2005091400.php │ │ ├── 2005092200.php │ │ ├── 2005092201.php │ │ ├── 2005092300.php │ │ ├── 2005092400.php │ │ ├── 2005100300.php │ │ ├── 2005100400.php │ │ ├── 2005100600.php │ │ ├── 2005100701.php │ │ ├── 2005101700.php │ │ ├── 2005101800.php │ │ ├── 2005101801.php │ │ ├── 2005102700.php │ │ ├── 2005120400.php │ │ ├── 2006032300.php │ │ ├── 2006081700.php │ │ ├── 2007031400.php │ │ ├── 2011010100.php │ │ ├── 2011010101.php │ │ ├── 2011010102.php │ │ ├── 2011010103.php │ │ ├── 2011010104.php │ │ ├── 2011010105.php │ │ ├── 2011010106.php │ │ ├── 2011010107.php │ │ ├── 2011010108.php │ │ ├── 2011011400.php │ │ ├── 2011011900.php │ │ ├── 2011030900.php │ │ ├── 2011030901.php │ │ ├── 2011040100.php │ │ ├── 2011072600.php │ │ └── 2011072601.php ├── index │ ├── directory.php │ └── flat.php ├── javascript │ ├── jquery-1.6.2.min.js │ ├── jquery.bgiframe-2.1.2.min.js │ ├── json2.js │ ├── phorum-javascript-library.php │ └── src │ │ ├── 000.header.src │ │ ├── 001.Phorum.src │ │ ├── 002.Phorum.jQuery.src │ │ ├── 003.Phorum.debug.src │ │ ├── 003.Phorum.extend.src │ │ ├── 003.Phorum.trim.src │ │ ├── 004.Phorum.Ajax.src │ │ ├── 004.Phorum.Cache.src │ │ ├── 010.Phorum.UI.src │ │ ├── 011.Phorum.UI.scrollbarwidth.src │ │ ├── 012.Phorum.UI.Element.src │ │ ├── 013.Phorum.UI.TextElement.src │ │ ├── 014.Phorum.UI.Editor.src │ │ ├── 015.Phorum.UI.BusyMarker.src │ │ ├── 015.Phorum.UI.NewFlags.src │ │ ├── 050.Phorum.aliases.src │ │ ├── Makefile │ │ ├── README │ │ ├── jslint.js │ │ └── jslint_wrapper ├── lang │ └── en_US.UTF-8.php ├── moderation │ ├── approve_message.php │ ├── approve_message_tree.php │ ├── close_thread.php │ ├── delete_message.php │ ├── delete_tree.php │ ├── do_thread_merge.php │ ├── do_thread_move.php │ ├── do_thread_split.php │ ├── hide_post.php │ ├── make_sticky.php │ ├── make_unsticky.php │ ├── merge_thread.php │ ├── move_thread.php │ ├── reopen_thread.php │ └── split_thread.php ├── posting │ ├── action_attachments.php │ ├── action_cancel.php │ ├── action_edit.php │ ├── action_post.php │ ├── action_preview.php │ ├── check_banlist.php │ ├── check_integrity.php │ ├── check_permissions.php │ ├── request_first.php │ └── request_followup.php └── version_functions.php ├── index.php ├── javascript.php ├── list.php ├── login.php ├── moderation.php ├── mods ├── .htaccess ├── announcements │ ├── announcements.php │ ├── info.txt │ ├── settings.php │ └── templates │ │ ├── classic │ │ ├── announcements.tpl │ │ └── css.tpl │ │ ├── emerald │ │ ├── announcements.tpl │ │ └── css.tpl │ │ └── lightweight │ │ ├── announcements.tpl │ │ └── css.tpl ├── bbcode │ ├── Changelog │ ├── README │ ├── TODO │ ├── api.php │ ├── bbcode.php │ ├── bbcode_editor_tools.js │ ├── builtin_tags.php │ ├── colorpicker │ │ ├── color_functions.js │ │ ├── images │ │ │ ├── select_arrow.gif │ │ │ ├── select_arrow_down.gif │ │ │ ├── select_arrow_over.gif │ │ │ ├── slider_handle.gif │ │ │ ├── tab_center_active.gif │ │ │ ├── tab_left_active.gif │ │ │ ├── tab_left_inactive.gif │ │ │ ├── tab_right_active.gif │ │ │ └── tab_right_inactive.gif │ │ ├── js_color_picker_v2.css │ │ ├── js_color_picker_v2.html │ │ └── js_color_picker_v2.js.php │ ├── defaults.php │ ├── help │ │ ├── czech │ │ │ └── bbcode.php │ │ ├── dutch │ │ │ └── bbcode.php │ │ ├── dutch_informal │ │ │ └── bbcode.php │ │ ├── english │ │ │ └── bbcode.php │ │ ├── finnish │ │ │ └── bbcode.php │ │ ├── german │ │ │ └── bbcode.php │ │ ├── help.css │ │ ├── italian │ │ │ └── bbcode.php │ │ ├── spanish │ │ │ └── bbcode.php │ │ └── thumbsup.gif │ ├── icons │ │ ├── b.gif │ │ ├── center.gif │ │ ├── code.gif │ │ ├── color.gif │ │ ├── email.gif │ │ ├── hr.gif │ │ ├── i.gif │ │ ├── img.gif │ │ ├── large.gif │ │ ├── left.gif │ │ ├── list.gif │ │ ├── quote.gif │ │ ├── right.gif │ │ ├── s.gif │ │ ├── size.gif │ │ ├── small.gif │ │ ├── sub.gif │ │ ├── subjectsmiley.gif │ │ ├── sup.gif │ │ ├── u.gif │ │ └── url.gif │ ├── info.txt │ ├── lang │ │ ├── czech-latin2.php │ │ ├── czech-utf8.php │ │ ├── czech-win1250.php │ │ ├── dutch.php │ │ ├── dutch_informal.php │ │ ├── english.php │ │ ├── finnish.php │ │ ├── french-utf8.php │ │ ├── french.php │ │ ├── german.php │ │ ├── italian.php │ │ ├── spanish.php │ │ ├── swedish.php │ │ └── turkish.php │ ├── settings.php │ └── templates │ │ └── emerald │ │ └── disable_option.tpl ├── compat_iconv │ ├── README │ ├── compat_iconv.php │ ├── convertcharset-1.1 │ │ ├── ConvertCharset.class.full.php │ │ ├── ConvertCharset.class.php │ │ ├── ConvertTables │ │ │ ├── cp037 │ │ │ ├── cp1006 │ │ │ ├── cp1026 │ │ │ ├── cp424 │ │ │ ├── cp437 │ │ │ ├── cp500 │ │ │ ├── cp737 │ │ │ ├── cp775 │ │ │ ├── cp850 │ │ │ ├── cp852 │ │ │ ├── cp855 │ │ │ ├── cp856 │ │ │ ├── cp857 │ │ │ ├── cp860 │ │ │ ├── cp861 │ │ │ ├── cp862 │ │ │ ├── cp863 │ │ │ ├── cp864 │ │ │ ├── cp865 │ │ │ ├── cp866 │ │ │ ├── cp869 │ │ │ ├── cp874 │ │ │ ├── cp875 │ │ │ ├── gsm0338 │ │ │ ├── iso-8859-1 │ │ │ ├── iso-8859-10 │ │ │ ├── iso-8859-11 │ │ │ ├── iso-8859-13 │ │ │ ├── iso-8859-14 │ │ │ ├── iso-8859-15 │ │ │ ├── iso-8859-16 │ │ │ ├── iso-8859-2 │ │ │ ├── iso-8859-3 │ │ │ ├── iso-8859-4 │ │ │ ├── iso-8859-5 │ │ │ ├── iso-8859-6 │ │ │ ├── iso-8859-7 │ │ │ ├── iso-8859-8 │ │ │ ├── iso-8859-9 │ │ │ ├── koi8-r │ │ │ ├── koi8-u │ │ │ ├── mazovia │ │ │ ├── nextstep │ │ │ ├── stdenc │ │ │ ├── symbol │ │ │ ├── turkish │ │ │ ├── us-ascii │ │ │ ├── us-ascii-quotes │ │ │ ├── windows-1250 │ │ │ ├── windows-1251 │ │ │ ├── windows-1252 │ │ │ ├── windows-1253 │ │ │ ├── windows-1254 │ │ │ ├── windows-1255 │ │ │ ├── windows-1256 │ │ │ ├── windows-1257 │ │ │ ├── windows-1258 │ │ │ ├── x-mac-ce │ │ │ ├── x-mac-cyrillic │ │ │ ├── x-mac-greek │ │ │ ├── x-mac-icelandic │ │ │ ├── x-mac-roman │ │ │ └── zdingbat │ │ └── License │ └── info.txt ├── compat_json │ ├── README │ ├── compat_json.php │ ├── info.txt │ └── json-pear.php ├── compat_mbstring │ ├── README │ ├── compat_mbstring.php │ └── info.txt ├── compat_random │ ├── README │ ├── compat_random.php │ ├── info.txt │ └── random_compat-2.0.2 │ │ ├── CHANGELOG.md │ │ ├── ERRATA.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── build-phar.sh │ │ ├── composer.json │ │ ├── dist │ │ ├── random_compat.phar.pubkey │ │ └── random_compat.phar.pubkey.asc │ │ ├── lib │ │ ├── byte_safe_strings.php │ │ ├── cast_to_int.php │ │ ├── error_polyfill.php │ │ ├── random.php │ │ ├── random_bytes_com_dotnet.php │ │ ├── random_bytes_dev_urandom.php │ │ ├── random_bytes_libsodium.php │ │ ├── random_bytes_libsodium_legacy.php │ │ ├── random_bytes_mcrypt.php │ │ └── random_int.php │ │ └── other │ │ └── build_phar.php ├── compat_stripos │ ├── README │ ├── compat_stripos.php │ └── info.txt ├── editor_tools │ ├── .htaccess │ ├── Changelog │ ├── README │ ├── defaults.php │ ├── editor_tools.css │ ├── editor_tools.js │ ├── editor_tools.php │ ├── icons │ │ └── help.gif │ ├── info.txt │ ├── lang │ │ ├── czech-latin2.php │ │ ├── czech-utf8.php │ │ ├── czech-win1250.php │ │ ├── dutch.php │ │ ├── english.php │ │ ├── finnish.php │ │ ├── french.php │ │ ├── german.php │ │ ├── italian.php │ │ ├── spanish.php │ │ ├── swedish.php │ │ └── turkish.php │ └── settings.php ├── event_logging │ ├── Changelog │ ├── README │ ├── constants.php │ ├── db.php │ ├── db │ │ └── mysql │ │ │ ├── 1.php │ │ │ └── 2.php │ ├── defaults.php │ ├── event_logging.php │ ├── images │ │ └── loglevels │ │ │ ├── 0.png │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ └── 4.png │ ├── info.txt │ ├── settings.php │ └── settings │ │ ├── download.php │ │ ├── filter.php │ │ ├── logviewer.php │ │ └── settings.php ├── mod_tidy.php ├── replace │ ├── info.txt │ ├── replace.php │ └── settings.php ├── smileys │ ├── defaults.php │ ├── help │ │ ├── czech │ │ │ └── smileys.php │ │ ├── dutch │ │ │ └── smileys.php │ │ ├── english │ │ │ └── smileys.php │ │ ├── finnish │ │ │ └── smileys.php │ │ ├── german │ │ │ └── smileys.php │ │ ├── help.css │ │ ├── italian │ │ │ └── smileys.php │ │ ├── render_smileys_list.php │ │ └── spanish │ │ │ └── smileys.php │ ├── icon.gif │ ├── images │ │ ├── angry.gif │ │ ├── baringteeth.gif │ │ ├── confused.gif │ │ ├── cool.gif │ │ ├── crying.gif │ │ ├── disappointed.gif │ │ ├── embarrassed.gif │ │ ├── footinmouth.gif │ │ ├── frowning.gif │ │ ├── hot.gif │ │ ├── innocent.gif │ │ ├── kissing.gif │ │ ├── laughing.gif │ │ ├── lipsaresealed.gif │ │ ├── nerd.gif │ │ ├── rolleyes.gif │ │ ├── sick.gif │ │ ├── sleepy.gif │ │ ├── smile.gif │ │ ├── smiley12.gif │ │ ├── smiley14.gif │ │ ├── smiley15.gif │ │ ├── smiley16.gif │ │ ├── smiley17.gif │ │ ├── smiley23.gif │ │ ├── smiley24.gif │ │ ├── smiley25.gif │ │ ├── smilie1.gif │ │ ├── smilie10.gif │ │ ├── smilie11.gif │ │ ├── smilie2.gif │ │ ├── smilie3.gif │ │ ├── smilie4.gif │ │ ├── smilie5.gif │ │ ├── smilie6.gif │ │ ├── smilie7.gif │ │ ├── smilie8.gif │ │ ├── smilie9.gif │ │ ├── suprised.gif │ │ ├── thinking.gif │ │ ├── tounge.gif │ │ ├── undecided.gif │ │ └── wink.gif │ ├── info.txt │ ├── lang │ │ ├── czech-latin2.php │ │ ├── czech-utf8.php │ │ ├── czech-win1250.php │ │ ├── dutch.php │ │ ├── english.php │ │ ├── finnish.php │ │ ├── french.php │ │ ├── german.php │ │ ├── italian.php │ │ ├── spanish.php │ │ ├── swedish.php │ │ └── turkish.php │ ├── settings.php │ ├── smileys.css │ ├── smileys.php │ ├── smileys_editor_tools.js.php │ ├── smileyslib.php │ └── templates │ │ └── emerald │ │ └── disable_option.tpl ├── smtp_mail │ ├── info.txt │ ├── phpmailer │ │ ├── LICENSE │ │ ├── PHPMailerAutoload.php │ │ ├── README.md │ │ ├── VERSION │ │ ├── changelog.md │ │ ├── class.phpmailer.php │ │ ├── class.pop3.php │ │ ├── class.smtp.php │ │ ├── composer.json │ │ └── language │ │ │ ├── phpmailer.lang-am.php │ │ │ ├── phpmailer.lang-ar.php │ │ │ ├── phpmailer.lang-az.php │ │ │ ├── phpmailer.lang-be.php │ │ │ ├── phpmailer.lang-bg.php │ │ │ ├── phpmailer.lang-br.php │ │ │ ├── phpmailer.lang-ca.php │ │ │ ├── phpmailer.lang-ch.php │ │ │ ├── phpmailer.lang-cz.php │ │ │ ├── phpmailer.lang-de.php │ │ │ ├── phpmailer.lang-dk.php │ │ │ ├── phpmailer.lang-el.php │ │ │ ├── phpmailer.lang-eo.php │ │ │ ├── phpmailer.lang-es.php │ │ │ ├── phpmailer.lang-et.php │ │ │ ├── phpmailer.lang-fa.php │ │ │ ├── phpmailer.lang-fi.php │ │ │ ├── phpmailer.lang-fo.php │ │ │ ├── phpmailer.lang-fr.php │ │ │ ├── phpmailer.lang-gl.php │ │ │ ├── phpmailer.lang-he.php │ │ │ ├── phpmailer.lang-hr.php │ │ │ ├── phpmailer.lang-hu.php │ │ │ ├── phpmailer.lang-id.php │ │ │ ├── phpmailer.lang-it.php │ │ │ ├── phpmailer.lang-ja.php │ │ │ ├── phpmailer.lang-ka.php │ │ │ ├── phpmailer.lang-ko.php │ │ │ ├── phpmailer.lang-lt.php │ │ │ ├── phpmailer.lang-lv.php │ │ │ ├── phpmailer.lang-ms.php │ │ │ ├── phpmailer.lang-nl.php │ │ │ ├── phpmailer.lang-no.php │ │ │ ├── phpmailer.lang-pl.php │ │ │ ├── phpmailer.lang-pt.php │ │ │ ├── phpmailer.lang-ro.php │ │ │ ├── phpmailer.lang-ru.php │ │ │ ├── phpmailer.lang-se.php │ │ │ ├── phpmailer.lang-sk.php │ │ │ ├── phpmailer.lang-sl.php │ │ │ ├── phpmailer.lang-sr.php │ │ │ ├── phpmailer.lang-tr.php │ │ │ ├── phpmailer.lang-uk.php │ │ │ ├── phpmailer.lang-vi.php │ │ │ ├── phpmailer.lang-zh.php │ │ │ └── phpmailer.lang-zh_cn.php │ ├── settings.php │ └── smtp_mail.php ├── spamhurdles │ ├── .htaccess │ ├── Changelog │ ├── README │ ├── TODO │ ├── api.php │ ├── captcha │ │ ├── class.banner.php │ │ ├── class.captcha_asciiart.php │ │ ├── class.captcha_base.php │ │ ├── class.captcha_image.php │ │ ├── class.captcha_javascript.php │ │ ├── class.captcha_maptcha.php │ │ ├── class.captcha_plaintext.php │ │ ├── class.captcha_recaptcha.php │ │ ├── fonts │ │ │ ├── banner.fnt │ │ │ ├── banner_large.fnt │ │ │ └── font3.ttf │ │ ├── recaptcha-php-1.9 │ │ │ ├── LICENSE │ │ │ ├── README │ │ │ ├── example-captcha.php │ │ │ ├── example-mailhide.php │ │ │ └── recaptchalib.php │ │ └── spoken_captcha.php │ ├── db.php │ ├── db │ │ ├── mysql │ │ │ └── 1.php │ │ ├── mysqli │ │ │ └── 1.php │ │ └── postgresql │ │ │ └── 1.php │ ├── defaults.php │ ├── hurdles │ │ ├── block_commented_field.php │ │ ├── block_quick_submit.js │ │ ├── block_quick_submit.php │ │ ├── block_replay.php │ │ ├── captcha.php │ │ ├── javascript_signature.js │ │ └── javascript_signature.php │ ├── images │ │ ├── datasphorum.jpg │ │ ├── datasphorum_thumb.jpg │ │ └── pixel.gif │ ├── include │ │ └── crypt │ │ │ ├── README │ │ │ ├── aes.php │ │ │ └── rijndael.php │ ├── info.txt │ ├── lang │ │ ├── danish.php │ │ ├── dutch.php │ │ ├── dutch_informal.php │ │ ├── english.php │ │ ├── french.php │ │ ├── german.php │ │ ├── german_sie.php │ │ ├── norwegian.php │ │ ├── portuguese-br-utf8.php │ │ ├── spanish_latin_american.php │ │ └── turkish.php │ ├── settings.php │ ├── spamhurdles.js │ ├── spamhurdles.php │ └── templates │ │ ├── classic │ │ ├── audio.gif │ │ ├── css.tpl │ │ └── editor_block.tpl │ │ └── emerald │ │ ├── audio.gif │ │ ├── css.tpl │ │ └── editor_block.tpl └── username_restrictions │ ├── Changelog │ ├── README │ ├── defaults.php │ ├── info.txt │ ├── lang │ ├── dutch.php │ ├── dutch_informal.php │ ├── english.php │ └── turkish.php │ ├── settings.php │ └── username_restrictions.php ├── pm.php ├── portable ├── .htaccess ├── phorum.php ├── phorum_admin.php └── phorum_settings.php ├── posting.php ├── profile.php ├── read.php ├── redirect.php ├── register.php ├── report.php ├── rss.php ├── script.php ├── scripts ├── .htaccess ├── PhorumTest │ ├── PhorumTestSuite.php │ └── readme.txt ├── console_upgrade.php ├── convertViewCount.php ├── convert_announcements.php ├── create_moderator_groups.php ├── delete_stale_messages.php ├── generateHOOKdocs.php ├── generateStaticCSS.php ├── import_xml.php ├── phorum3_in.php ├── phorum3to5convert.php ├── rebuild_display_names.php ├── rebuild_forum_paths.php ├── rebuild_forum_stats.php ├── rebuild_postcount.php ├── rebuild_search_table.php ├── rebuild_thread_info.php └── stress_test.php ├── search.php ├── templates ├── .htaccess ├── classic │ ├── cc_files.tpl │ ├── cc_groupmod.tpl │ ├── cc_groups.tpl │ ├── cc_index.tpl │ ├── cc_menu.tpl │ ├── cc_prepost.tpl │ ├── cc_start.tpl │ ├── cc_subscriptions.tpl │ ├── cc_users.tpl │ ├── cc_usersettings.tpl │ ├── css.tpl │ ├── css_print.tpl │ ├── dbdebug.tpl │ ├── follow.tpl │ ├── footer.tpl │ ├── header.tpl │ ├── images │ │ ├── carat.gif │ │ ├── delete.gif │ │ ├── gauge.gif │ │ ├── logo.png │ │ ├── square_bullet.png │ │ └── tree-L.gif │ ├── index_directory.tpl │ ├── index_flat.tpl │ ├── info.php │ ├── list.tpl │ ├── list_threads.tpl │ ├── login.tpl │ ├── loginout_menu.tpl │ ├── merge_form.tpl │ ├── message.tpl │ ├── move_form.tpl │ ├── paging.tpl │ ├── pm.tpl │ ├── pm_buddies.tpl │ ├── pm_folders.formstart.tpl │ ├── pm_folders.tpl │ ├── pm_list.tpl │ ├── pm_list_incoming.tpl │ ├── pm_list_outgoing.tpl │ ├── pm_list_selectall.tpl │ ├── pm_max_messagecount.tpl │ ├── pm_menu.tpl │ ├── pm_moveselect.tpl │ ├── pm_post.tpl │ ├── pm_read.tpl │ ├── posting.tpl │ ├── posting_attachments.tpl │ ├── posting_attachments_list.tpl │ ├── posting_buttons.tpl │ ├── posting_menu.tpl │ ├── posting_messageform.tpl │ ├── posting_preview.tpl │ ├── profile.tpl │ ├── read.tpl │ ├── read_hybrid.tpl │ ├── read_threads.tpl │ ├── register.tpl │ ├── report.tpl │ ├── search.tpl │ ├── settings.tpl │ ├── split_form.tpl │ └── stdblock.tpl ├── emerald │ ├── cc_files.tpl │ ├── cc_groupmod.tpl │ ├── cc_groups.tpl │ ├── cc_index.tpl │ ├── cc_prepost.tpl │ ├── cc_start.tpl │ ├── cc_subscriptions.tpl │ ├── cc_users.tpl │ ├── cc_usersettings.tpl │ ├── changes.tpl │ ├── css.tpl │ ├── css_print.tpl │ ├── dbdebug.tpl │ ├── follow.tpl │ ├── footer.tpl │ ├── header.tpl │ ├── images │ │ ├── accept.png │ │ ├── ajax_progress.gif │ │ ├── arrow_divide.png │ │ ├── arrow_join.png │ │ ├── attach.png │ │ ├── bell.png │ │ ├── bullet_black.png │ │ ├── bullet_go.png │ │ ├── cancel.png │ │ ├── carat.gif │ │ ├── comment.png │ │ ├── comment_add.png │ │ ├── comment_delete.png │ │ ├── comment_edit.png │ │ ├── comments_add.png │ │ ├── control_first.png │ │ ├── control_last.png │ │ ├── control_next.png │ │ ├── control_prev.png │ │ ├── delete.gif │ │ ├── delete.png │ │ ├── dialog-warning.png │ │ ├── email_delete.png │ │ ├── exclamation.png │ │ ├── feed.png │ │ ├── flag_red.png │ │ ├── folder.png │ │ ├── gauge.gif │ │ ├── generic_background.png │ │ ├── group_add.png │ │ ├── header_background.png │ │ ├── information.png │ │ ├── key_delete.png │ │ ├── key_go.png │ │ ├── lock.png │ │ ├── lock_open.png │ │ ├── logo.png │ │ ├── message_background.png │ │ ├── note_add.png │ │ ├── page_go.png │ │ ├── printer.png │ │ ├── square_bullet.png │ │ ├── table_add.png │ │ ├── tag_green.png │ │ ├── text_align_justify.png │ │ ├── top_background.png │ │ ├── tree-L.gif │ │ ├── user.png │ │ ├── user_add.png │ │ ├── user_comment.png │ │ ├── user_edit.png │ │ └── zoom.png │ ├── index_directory.tpl │ ├── index_flat.tpl │ ├── info.php │ ├── javascript.tpl │ ├── list.tpl │ ├── list_threads.tpl │ ├── login.tpl │ ├── merge_form.tpl │ ├── message.tpl │ ├── move_form.tpl │ ├── paging.tpl │ ├── pm.tpl │ ├── pm_buddies.tpl │ ├── pm_folders.tpl │ ├── pm_list.tpl │ ├── pm_list_incoming.tpl │ ├── pm_list_outgoing.tpl │ ├── pm_post.tpl │ ├── pm_read.tpl │ ├── posting.tpl │ ├── profile.tpl │ ├── read.tpl │ ├── read_hybrid.tpl │ ├── read_threads.tpl │ ├── register.tpl │ ├── report.tpl │ ├── search.tpl │ ├── settings.tpl │ ├── split_form.tpl │ └── stdblock.tpl └── lightweight │ ├── cc_files.tpl │ ├── cc_groupmod.tpl │ ├── cc_groups.tpl │ ├── cc_index.tpl │ ├── cc_prepost.tpl │ ├── cc_start.tpl │ ├── cc_subscriptions.tpl │ ├── cc_users.tpl │ ├── cc_usersettings.tpl │ ├── changes.tpl │ ├── css.tpl │ ├── css_print.tpl │ ├── dbdebug.tpl │ ├── follow.tpl │ ├── footer.tpl │ ├── header.tpl │ ├── images │ ├── accept.png │ ├── arrow_divide.png │ ├── arrow_join.png │ ├── attach.png │ ├── bell.png │ ├── bullet_black.png │ ├── bullet_go.png │ ├── cancel.png │ ├── carat.gif │ ├── comment.png │ ├── comment_add.png │ ├── comment_delete.png │ ├── comment_edit.png │ ├── comments_add.png │ ├── control_first.png │ ├── control_last.png │ ├── control_next.png │ ├── control_prev.png │ ├── delete.gif │ ├── delete.png │ ├── dialog-warning.png │ ├── email_delete.png │ ├── exclamation.png │ ├── feed.png │ ├── flag_red.png │ ├── folder.png │ ├── gauge.gif │ ├── generic_background.png │ ├── group_add.png │ ├── header_background.png │ ├── information.png │ ├── key_go.png │ ├── lock.png │ ├── lock_open.png │ ├── logo.png │ ├── message_background.png │ ├── note_add.png │ ├── page_go.png │ ├── printer.png │ ├── square_bullet.png │ ├── table_add.png │ ├── tag_green.png │ ├── text_align_justify.png │ ├── top-background.png │ ├── tree-L.gif │ ├── user.png │ ├── user_add.png │ ├── user_comment.png │ ├── user_edit.png │ └── zoom.png │ ├── index_directory.tpl │ ├── index_flat.tpl │ ├── info.php │ ├── list.tpl │ ├── list_threads.tpl │ ├── login.tpl │ ├── merge_form.tpl │ ├── message.tpl │ ├── move_form.tpl │ ├── paging.tpl │ ├── pm.tpl │ ├── pm_buddies.tpl │ ├── pm_folders.tpl │ ├── pm_list.tpl │ ├── pm_list_incoming.tpl │ ├── pm_list_outgoing.tpl │ ├── pm_post.tpl │ ├── pm_read.tpl │ ├── posting.tpl │ ├── profile.tpl │ ├── read.tpl │ ├── read_hybrid.tpl │ ├── read_threads.tpl │ ├── register.tpl │ ├── report.tpl │ ├── search.tpl │ ├── settings.tpl │ ├── split_form.tpl │ └── stdblock.tpl ├── todo.txt └── versioncheck.php /INSTALL: -------------------------------------------------------------------------------- 1 | See docs/install.txt for installation instructions. 2 | See docs/upgrade.txt for upgrading instructions. 3 | -------------------------------------------------------------------------------- /cache/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all 2 | -------------------------------------------------------------------------------- /docs/docbook/README: -------------------------------------------------------------------------------- 1 | This directory contains the docbook source files for the Phorum manuals. 2 | -------------------------------------------------------------------------------- /docs/docbook/faq/part_faq_modules.xml: -------------------------------------------------------------------------------- 1 | 2 | Modules 3 | 4 |
5 | 6 | How do I install a module? 7 | 8 | 9 | Check the admin-documentation 10 | about modules 11 | 12 |
13 | 14 |
15 | -------------------------------------------------------------------------------- /docs/example_mods/example_check_post/info.txt: -------------------------------------------------------------------------------- 1 | title: Check_post example module 2 | desc: This is a module that demonstrates how to use the check_post hook. It will disallow the use of the string "bar" in the message body. 3 | hook: check_post|phorum_mod_example_check_post_check_post 4 | -------------------------------------------------------------------------------- /docs/example_mods/example_language/example_language.php: -------------------------------------------------------------------------------- 1 | 11 | -------------------------------------------------------------------------------- /docs/example_mods/example_language/info.txt: -------------------------------------------------------------------------------- 1 | title: Language example module 2 | desc: This is a module that demonstrates the support of multiple languages in a multiple file module. 3 | hook: lang| 4 | hook: after_header|phorum_mod_example_language_after_header 5 | -------------------------------------------------------------------------------- /docs/example_mods/example_language/lang/dutch.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /docs/example_mods/example_language/lang/english.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /docs/example_mods/example_language/lang/french.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /docs/example_mods/example_language/lang/german.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /docs/example_mods/example_settings/info.txt: -------------------------------------------------------------------------------- 1 | title: Settings example module 2 | desc: This is a module that demonstrates the support module settings in a multiple file module. 3 | hook: after_header|phorum_mod_example_settings_after_header 4 | -------------------------------------------------------------------------------- /docs/html/admin/Makefile: -------------------------------------------------------------------------------- 1 | XSLTPROC=xsltproc 2 | XSLTPROCOPTS=--novalid 3 | 4 | all: 5 | $(XSLTPROC) $(XSLTPROCOPTS) \ 6 | ../phorum_docbook.xsl \ 7 | ../../docbook/admin/index.xml 8 | 9 | clean: 10 | /bin/rm -f *.html 11 | 12 | -------------------------------------------------------------------------------- /docs/html/admin/README: -------------------------------------------------------------------------------- 1 | The documentation in this directory is generated from the docbook 2 | administrator xml. The Makefile in this directory can be used to 3 | regenerate the contents. 4 | -------------------------------------------------------------------------------- /docs/html/api/README: -------------------------------------------------------------------------------- 1 | The documentation in this directory is generated from the inline phpdoc 2 | documentation. The Makefile in this directory can be used to regenerate 3 | the contents. 4 | 5 | The tool for generating the docs is PhpDocumentor. This tool can be 6 | installed using the "pear" tool from PHP. 7 | 8 | # pear install PhpDocumentor 9 | -------------------------------------------------------------------------------- /docs/html/developer/Makefile: -------------------------------------------------------------------------------- 1 | XSLTPROC=xsltproc 2 | XSLTPROCOPTS=--novalid 3 | 4 | all: 5 | ../../docbook/developer/mkhookdocs 6 | $(XSLTPROC) $(XSLTPROCOPTS) \ 7 | ../phorum_docbook.xsl \ 8 | ../../docbook/developer/index.xml 9 | 10 | clean: 11 | /bin/rm -f *.html 12 | 13 | -------------------------------------------------------------------------------- /docs/html/developer/README: -------------------------------------------------------------------------------- 1 | The documentation in this directory is generated from the docbook 2 | developer xml. The Makefile in this directory can be used to regenerate 3 | the contents. 4 | -------------------------------------------------------------------------------- /docs/html/faq/Makefile: -------------------------------------------------------------------------------- 1 | XSLTPROC=xsltproc 2 | XSLTPROCOPTS=--novalid 3 | 4 | all: 5 | $(XSLTPROC) $(XSLTPROCOPTS) \ 6 | ../phorum_docbook.xsl \ 7 | ../../docbook/faq/index.xml 8 | 9 | clean: 10 | /bin/rm -f *.html 11 | 12 | -------------------------------------------------------------------------------- /docs/html/faq/README: -------------------------------------------------------------------------------- 1 | The documentation in this directory is generated from the docbook 2 | FAQ xml. The Makefile in this directory can be used to regenerate 3 | the contents. 4 | -------------------------------------------------------------------------------- /docs/html/images/firefox_80x15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/images/firefox_80x15.png -------------------------------------------------------------------------------- /docs/html/images/important.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/images/important.gif -------------------------------------------------------------------------------- /docs/html/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/images/logo.png -------------------------------------------------------------------------------- /docs/html/images/menu-background-highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/images/menu-background-highlight.png -------------------------------------------------------------------------------- /docs/html/images/menu-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/images/menu-background.png -------------------------------------------------------------------------------- /docs/html/images/note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/images/note.png -------------------------------------------------------------------------------- /docs/html/images/php_power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/images/php_power.png -------------------------------------------------------------------------------- /docs/html/images/top-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/images/top-background.png -------------------------------------------------------------------------------- /docs/html/javascript/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | (cd build; ./build) 3 | 4 | clean: 5 | /bin/rm -fR resources output source *.html 6 | 7 | -------------------------------------------------------------------------------- /docs/html/javascript/README: -------------------------------------------------------------------------------- 1 | The documentation in this directory is generated from the extjs doc comments in 2 | the javascript library. The Makefile in this directory can be used to regenerate 3 | the contents. 4 | 5 | For building the documentation, Java must be installed. 6 | 7 | -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/ext-doc.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/ext-doc.jar -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/lib/commons-cli-1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/lib/commons-cli-1.1.jar -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/accordian.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/accordian.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/block-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/block-bg.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/block-bottom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/block-bottom.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/block-top.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/block-top.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/class.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/class.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/cmp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/cmp.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/collapse-all.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/collapse-all.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/collapse-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/collapse-bg.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/config.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/config.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/docs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/docs.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/elbow-end.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/elbow-end.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/event.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/event.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/example.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/expand-all.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/expand-all.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/expand-bg-over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/expand-bg-over.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/expand-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/expand-bg.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/expand-members.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/expand-members.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/extanim32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/extanim32.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/extanim64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/extanim64.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/extjs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/extjs.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/fav.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/fav.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/folder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/folder.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/folder_open.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/folder_open.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/form.png -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/forum.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/forum.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/hd-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/hd-bg.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/hide-inherited.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/hide-inherited.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/icon-grid.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/icon-grid.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/box/corners-blue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/box/corners-blue.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/box/corners.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/box/corners.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/box/l-blue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/box/l-blue.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/box/l.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/box/l.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/box/r-blue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/box/r-blue.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/box/r.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/box/r.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/box/tb-blue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/box/tb-blue.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/box/tb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/box/tb.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/button/btn-arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/button/btn-arrow.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/button/btn-sprite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/button/btn-sprite.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/dd/drop-add.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/dd/drop-add.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/dd/drop-no.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/dd/drop-no.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/dd/drop-yes.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/dd/drop-yes.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/editor/tb-sprite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/editor/tb-sprite.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/form/checkbox.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/form/checkbox.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/form/clear-trigger.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/form/clear-trigger.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/form/clear-trigger.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/form/clear-trigger.psd -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/form/date-trigger.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/form/date-trigger.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/form/date-trigger.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/form/date-trigger.psd -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/form/error-tip-corners.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/form/error-tip-corners.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/form/exclamation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/form/exclamation.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/form/radio.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/form/radio.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/form/search-trigger.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/form/search-trigger.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/form/search-trigger.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/form/search-trigger.psd -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/form/text-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/form/text-bg.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/form/trigger-tpl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/form/trigger-tpl.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/form/trigger.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/form/trigger.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/form/trigger.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/form/trigger.psd -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/gradient-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/gradient-bg.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/arrow-left-white.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/arrow-left-white.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/arrow-right-white.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/arrow-right-white.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/col-move-bottom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/col-move-bottom.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/col-move-top.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/col-move-top.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/columns.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/columns.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/dirty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/dirty.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/done.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/done.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/drop-no.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/drop-no.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/drop-yes.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/drop-yes.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/footer-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/footer-bg.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/grid-blue-hd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/grid-blue-hd.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/grid-blue-split.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/grid-blue-split.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/grid-hrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/grid-hrow.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/grid-loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/grid-loading.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/grid-split.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/grid-split.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/grid-vista-hd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/grid-vista-hd.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/grid3-hd-btn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/grid3-hd-btn.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/grid3-hrow-over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/grid3-hrow-over.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/grid3-hrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/grid3-hrow.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/grid3-special-col-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/grid3-special-col-bg.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/grid3-special-col-sel-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/grid3-special-col-sel-bg.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/group-by.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/group-by.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/group-expand-sprite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/group-expand-sprite.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/hd-pop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/hd-pop.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/hmenu-asc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/hmenu-asc.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/hmenu-desc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/hmenu-desc.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/hmenu-lock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/hmenu-lock.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/hmenu-lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/hmenu-lock.png -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/hmenu-unlock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/hmenu-unlock.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/hmenu-unlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/hmenu-unlock.png -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/invalid_line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/invalid_line.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/loading.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/mso-hd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/mso-hd.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/nowait.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/nowait.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/page-first-disabled.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/page-first-disabled.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/page-first.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/page-first.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/page-last-disabled.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/page-last-disabled.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/page-last.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/page-last.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/page-next-disabled.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/page-next-disabled.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/page-next.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/page-next.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/page-prev-disabled.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/page-prev-disabled.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/page-prev.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/page-prev.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/pick-button.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/pick-button.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/refresh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/refresh.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/row-check-sprite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/row-check-sprite.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/row-expand-sprite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/row-expand-sprite.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/row-over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/row-over.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/row-sel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/row-sel.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/sort_asc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/sort_asc.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/sort_desc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/sort_desc.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/wait.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/grid/wait.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/layout/collapse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/layout/collapse.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/layout/expand.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/layout/expand.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/layout/gradient-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/layout/gradient-bg.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/layout/mini-bottom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/layout/mini-bottom.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/layout/mini-left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/layout/mini-left.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/layout/mini-right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/layout/mini-right.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/layout/mini-top.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/layout/mini-top.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/layout/ns-collapse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/layout/ns-collapse.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/layout/ns-expand.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/layout/ns-expand.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/layout/panel-close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/layout/panel-close.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/layout/panel-title-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/layout/panel-title-bg.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/layout/panel-title-light-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/layout/panel-title-light-bg.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/layout/stick.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/layout/stick.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/layout/stuck.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/layout/stuck.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/layout/tab-close-on.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/layout/tab-close-on.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/layout/tab-close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/layout/tab-close.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/menu/checked.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/menu/checked.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/menu/group-checked.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/menu/group-checked.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/menu/item-over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/menu/item-over.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/menu/menu-parent.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/menu/menu-parent.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/menu/menu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/menu/menu.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/menu/unchecked.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/menu/unchecked.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/panel/corners-sprite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/panel/corners-sprite.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/panel/left-right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/panel/left-right.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/panel/light-hd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/panel/light-hd.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/panel/tool-sprite-tpl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/panel/tool-sprite-tpl.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/panel/tool-sprites.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/panel/tool-sprites.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/panel/tools-sprites-trans.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/panel/tools-sprites-trans.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/panel/top-bottom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/panel/top-bottom.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/panel/top-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/panel/top-bottom.png -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/panel/white-corners-sprite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/panel/white-corners-sprite.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/panel/white-left-right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/panel/white-left-right.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/panel/white-top-bottom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/panel/white-top-bottom.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/progress/progress-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/progress/progress-bg.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/qtip/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/qtip/bg.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/qtip/close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/qtip/close.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/qtip/tip-sprite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/qtip/tip-sprite.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/s.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/s.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/shadow-c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/shadow-c.png -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/shadow-c.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/shadow-c.psd -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/shadow-lr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/shadow-lr.png -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/shadow.png -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/shared/blue-loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/shared/blue-loading.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/shared/calendar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/shared/calendar.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/shared/glass-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/shared/glass-bg.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/shared/hd-sprite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/shared/hd-sprite.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/shared/large-loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/shared/large-loading.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/shared/left-btn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/shared/left-btn.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/shared/loading-balls.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/shared/loading-balls.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/shared/right-btn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/shared/right-btn.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/shared/warning.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/shared/warning.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/sizer/e-handle-dark.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/sizer/e-handle-dark.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/sizer/e-handle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/sizer/e-handle.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/sizer/ne-handle-dark.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/sizer/ne-handle-dark.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/sizer/ne-handle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/sizer/ne-handle.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/sizer/nw-handle-dark.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/sizer/nw-handle-dark.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/sizer/nw-handle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/sizer/nw-handle.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/sizer/s-handle-dark.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/sizer/s-handle-dark.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/sizer/s-handle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/sizer/s-handle.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/sizer/se-handle-dark.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/sizer/se-handle-dark.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/sizer/se-handle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/sizer/se-handle.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/sizer/square.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/sizer/square.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/sizer/sw-handle-dark.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/sizer/sw-handle-dark.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/sizer/sw-handle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/sizer/sw-handle.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/slider/slider-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/slider/slider-bg.png -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/slider/slider-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/slider/slider-thumb.png -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/slider/slider-v-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/slider/slider-v-bg.png -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/slider/slider-v-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/slider/slider-v-thumb.png -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/tabs/scroll-left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/tabs/scroll-left.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/tabs/scroll-right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/tabs/scroll-right.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/tabs/scroller-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/tabs/scroller-bg.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/tabs/tab-btm-inactive-left-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/tabs/tab-btm-inactive-left-bg.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/tabs/tab-btm-inactive-right-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/tabs/tab-btm-inactive-right-bg.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/tabs/tab-btm-left-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/tabs/tab-btm-left-bg.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/tabs/tab-btm-right-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/tabs/tab-btm-right-bg.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/tabs/tab-close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/tabs/tab-close.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/tabs/tab-strip-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/tabs/tab-strip-bg.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/tabs/tab-strip-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/tabs/tab-strip-bg.png -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/tabs/tab-strip-btm-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/tabs/tab-strip-btm-bg.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/tabs/tabs-sprite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/tabs/tabs-sprite.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/toolbar/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/toolbar/bg.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/toolbar/btn-arrow-light.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/toolbar/btn-arrow-light.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/toolbar/btn-arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/toolbar/btn-arrow.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/toolbar/btn-over-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/toolbar/btn-over-bg.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/toolbar/gray-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/toolbar/gray-bg.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/toolbar/tb-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/toolbar/tb-bg.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/toolbar/tb-btn-sprite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/toolbar/tb-btn-sprite.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/tree/arrows.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/tree/arrows.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/tree/drop-add.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/tree/drop-add.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/tree/drop-between.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/tree/drop-between.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/tree/drop-no.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/tree/drop-no.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/tree/drop-over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/tree/drop-over.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/tree/drop-under.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/tree/drop-under.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/tree/drop-yes.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/tree/drop-yes.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/tree/elbow-end-minus-nl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/tree/elbow-end-minus-nl.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/tree/elbow-end-minus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/tree/elbow-end-minus.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/tree/elbow-end-plus-nl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/tree/elbow-end-plus-nl.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/tree/elbow-end-plus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/tree/elbow-end-plus.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/tree/elbow-end.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/tree/elbow-end.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/tree/elbow-line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/tree/elbow-line.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/tree/elbow-minus-nl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/tree/elbow-minus-nl.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/tree/elbow-minus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/tree/elbow-minus.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/tree/elbow-plus-nl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/tree/elbow-plus-nl.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/tree/elbow-plus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/tree/elbow-plus.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/tree/elbow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/tree/elbow.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/tree/folder-open.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/tree/folder-open.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/tree/folder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/tree/folder.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/tree/leaf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/tree/leaf.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/tree/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/tree/loading.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/tree/s.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/tree/s.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/window/icon-error.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/window/icon-error.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/window/icon-info.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/window/icon-info.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/window/icon-question.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/window/icon-question.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/window/icon-warning.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/window/icon-warning.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/window/left-corners.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/window/left-corners.png -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/window/left-corners.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/window/left-corners.psd -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/window/left-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/window/left-right.png -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/window/left-right.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/window/left-right.psd -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/window/right-corners.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/window/right-corners.png -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/window/right-corners.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/window/right-corners.psd -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/window/top-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/window/top-bottom.png -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/window/top-bottom.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/images/default/window/top-bottom.psd -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/inherited.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/inherited.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/member-collapsed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/member-collapsed.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/member-expanded.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/member-expanded.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/member-hover.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/member-hover.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/method.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/method.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/minus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/minus.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/pkg-closed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/pkg-closed.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/pkg-open.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/pkg-open.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/pkg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/pkg.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/plus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/plus.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/print.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/print.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/prop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/prop.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/s.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/s.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/static.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/static.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/tabs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/tabs.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/tree-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/tree-bg.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/wel-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/wel-bg.gif -------------------------------------------------------------------------------- /docs/html/javascript/build/ext-doc/template/phorum/resources/welcome-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/docs/html/javascript/build/ext-doc/template/phorum/resources/welcome-bg.gif -------------------------------------------------------------------------------- /docs/html/user/Makefile: -------------------------------------------------------------------------------- 1 | XSLTPROC=xsltproc 2 | XSLTPROCOPTS=--novalid 3 | 4 | all: 5 | $(XSLTPROC) $(XSLTPROCOPTS) \ 6 | ../phorum_docbook.xsl \ 7 | ../../docbook/user/index.xml 8 | 9 | clean: 10 | /bin/rm -f *.html 11 | 12 | -------------------------------------------------------------------------------- /docs/html/user/README: -------------------------------------------------------------------------------- 1 | The documentation in this directory is generated from the docbook xml. 2 | The Makefile in this directory can be used to regenerate the contents. 3 | -------------------------------------------------------------------------------- /images/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/images/add.png -------------------------------------------------------------------------------- /images/alert.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/images/alert.gif -------------------------------------------------------------------------------- /images/arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/images/arrow_down.png -------------------------------------------------------------------------------- /images/arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/images/arrow_up.png -------------------------------------------------------------------------------- /images/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/images/button.png -------------------------------------------------------------------------------- /images/close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/images/close.gif -------------------------------------------------------------------------------- /images/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/images/comment.png -------------------------------------------------------------------------------- /images/comments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/images/comments.png -------------------------------------------------------------------------------- /images/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/images/delete.png -------------------------------------------------------------------------------- /images/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/images/folder.png -------------------------------------------------------------------------------- /images/folder_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/images/folder_up.png -------------------------------------------------------------------------------- /images/forum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/images/forum.png -------------------------------------------------------------------------------- /images/qmark.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/images/qmark.gif -------------------------------------------------------------------------------- /images/trans.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/images/trans.gif -------------------------------------------------------------------------------- /include/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all 2 | -------------------------------------------------------------------------------- /include/admin/css/.htaccess: -------------------------------------------------------------------------------- 1 | Allow from all -------------------------------------------------------------------------------- /include/api/examples/file_delete.php: -------------------------------------------------------------------------------- 1 | 12 | -------------------------------------------------------------------------------- /include/config/.gitignore: -------------------------------------------------------------------------------- 1 | database.php 2 | cache.php 3 | -------------------------------------------------------------------------------- /include/db/upgrade/mysql-patches/2006090700.php: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /include/db/upgrade/mysql-patches/2006090701.php: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /include/db/upgrade/mysql-patches/2007042401.php: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /include/db/upgrade/mysql-patches/2007042402.php: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /include/db/upgrade/mysql-patches/2007050601.php: -------------------------------------------------------------------------------- 1 | 9 | -------------------------------------------------------------------------------- /include/db/upgrade/mysql-patches/2007050603.php: -------------------------------------------------------------------------------- 1 | 10 | -------------------------------------------------------------------------------- /include/db/upgrade/mysql-patches/2007050900.php: -------------------------------------------------------------------------------- 1 | 9 | -------------------------------------------------------------------------------- /include/db/upgrade/mysql-patches/2007050901.php: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /include/db/upgrade/mysql-patches/2007060700.php: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /include/db/upgrade/mysql-patches/2007061900.php: -------------------------------------------------------------------------------- 1 | 9 | -------------------------------------------------------------------------------- /include/db/upgrade/mysql-patches/2007090500.php: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /include/db/upgrade/mysql-patches/2007090900.php: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /include/db/upgrade/mysql-patches/2007090901.php: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /include/db/upgrade/mysql-patches/2007090902.php: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /include/db/upgrade/mysql-patches/2007091000.php: -------------------------------------------------------------------------------- 1 | 9 | -------------------------------------------------------------------------------- /include/db/upgrade/mysql-patches/2007092900.php: -------------------------------------------------------------------------------- 1 | update_settings(array( 7 | "allow_pm_email_notify" => 1 8 | )); 9 | } 10 | 11 | ?> 12 | -------------------------------------------------------------------------------- /include/db/upgrade/mysql-patches/2007100800.php: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /include/db/upgrade/mysql-patches/2007100801.php: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /include/db/upgrade/mysql-patches/2007101400.php: -------------------------------------------------------------------------------- 1 | 9 | -------------------------------------------------------------------------------- /include/db/upgrade/mysql-patches/2007102700.php: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /include/db/upgrade/mysql-patches/2007110300.php: -------------------------------------------------------------------------------- 1 | update_settings(array( 6 | "cache_css" => 1, 7 | "cache_javascript" => 1 8 | )); 9 | } 10 | 11 | ?> 12 | -------------------------------------------------------------------------------- /include/db/upgrade/mysql-patches/2007112400.php: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /include/db/upgrade/mysql-patches/2008012400.php: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /include/db/upgrade/mysql-patches/2008012401.php: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /include/db/upgrade/mysql-patches/2008021900.php: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /include/db/upgrade/mysql-patches/2008031400.php: -------------------------------------------------------------------------------- 1 | update_settings(array('display_name_source' => 'username')); 9 | } 10 | 11 | ?> 12 | -------------------------------------------------------------------------------- /include/db/upgrade/mysql-patches/2008062500.php: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /include/db/upgrade/mysql-patches/2008091900.php: -------------------------------------------------------------------------------- 1 | 13 | -------------------------------------------------------------------------------- /include/db/upgrade/mysql-patches/2012030800.php: -------------------------------------------------------------------------------- 1 | 9 | -------------------------------------------------------------------------------- /include/db/upgrade/mysql/2003011801.php: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /include/db/upgrade/mysql/2003060100.php: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /include/db/upgrade/mysql/2003060600.php: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /include/db/upgrade/mysql/2003072000.php: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /include/db/upgrade/mysql/2003112500.php: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /include/db/upgrade/mysql/2004021200.php: -------------------------------------------------------------------------------- 1 | 9 | -------------------------------------------------------------------------------- /include/db/upgrade/mysql/2004031000.php: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /include/db/upgrade/mysql/2004031200.php: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /include/db/upgrade/mysql/2004031201.php: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /include/db/upgrade/mysql/2004032900.php: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /include/db/upgrade/mysql/2004032901.php: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /include/db/upgrade/mysql/2004052900.php: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /include/db/upgrade/mysql/2004061300.php: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /include/db/upgrade/mysql/2004061400.php: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /include/db/upgrade/mysql/2004071000.php: -------------------------------------------------------------------------------- 1 | 9 | -------------------------------------------------------------------------------- /include/db/upgrade/mysql/2004071100.php: -------------------------------------------------------------------------------- 1 | 9 | -------------------------------------------------------------------------------- /include/db/upgrade/mysql/2004071900.php: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /include/db/upgrade/mysql/2004073100.php: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /include/db/upgrade/mysql/2004080600.php: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /include/db/upgrade/mysql/2004080601.php: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /include/db/upgrade/mysql/2004080700.php: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /include/db/upgrade/mysql/2004100700.php: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /include/db/upgrade/mysql/2004112800.php: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /include/db/upgrade/mysql/2005031900.php: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /include/db/upgrade/mysql/2005062000.php: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /include/db/upgrade/mysql/2005062600.php: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /include/db/upgrade/mysql/2005070500.php: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /include/db/upgrade/mysql/2005071200.php: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /include/db/upgrade/mysql/2005072600.php: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /include/db/upgrade/mysql/2005081000.php: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /include/db/upgrade/mysql/2005082800.php: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /include/db/upgrade/mysql/2005092201.php: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /include/db/upgrade/mysql/2005100300.php: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /include/db/upgrade/mysql/2005100701.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/db/upgrade/mysql/2005101700.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/db/upgrade/mysql/2005101800.php: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /include/db/upgrade/mysql/2005101801.php: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /include/db/upgrade/mysql/2005120400.php: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /include/db/upgrade/mysql/2006032300.php: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /include/db/upgrade/mysql/2006081700.php: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /include/db/upgrade/mysql/2007031400.php: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /include/db/upgrade/mysql/2011010100.php: -------------------------------------------------------------------------------- 1 | 9 | -------------------------------------------------------------------------------- /include/db/upgrade/mysql/2011010102.php: -------------------------------------------------------------------------------- 1 | 9 | -------------------------------------------------------------------------------- /include/db/upgrade/mysql/2011010106.php: -------------------------------------------------------------------------------- 1 | 10 | -------------------------------------------------------------------------------- /include/db/upgrade/mysql/2011010107.php: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /include/db/upgrade/mysql/2011011400.php: -------------------------------------------------------------------------------- 1 | 9 | -------------------------------------------------------------------------------- /include/db/upgrade/mysql/2011011900.php: -------------------------------------------------------------------------------- 1 | update_settings(array("user_language" => TRUE)); 7 | } 8 | 9 | -------------------------------------------------------------------------------- /include/db/upgrade/mysql/2011072600.php: -------------------------------------------------------------------------------- 1 | rebuild_pm_new_counts(); 5 | 6 | -------------------------------------------------------------------------------- /mods/announcements/info.txt: -------------------------------------------------------------------------------- 1 | title: Announcements 2 | desc: Shows topics from one forum as announcements in a variety of ways. 3 | author: Phorum Dev Team 4 | url: http://www.phorum.org/ 5 | 6 | hook: after_header|phorum_show_announcements 7 | hook: common|phorum_setup_announcements 8 | hook: css_register|phorum_mod_announcements_css_register 9 | -------------------------------------------------------------------------------- /mods/announcements/templates/emerald/css.tpl: -------------------------------------------------------------------------------- 1 | #phorum table.announcements { 2 | margin-bottom: 20px; 3 | } 4 | -------------------------------------------------------------------------------- /mods/announcements/templates/lightweight/css.tpl: -------------------------------------------------------------------------------- 1 | #phorum table.announcements { 2 | margin-bottom: 20px; 3 | } 4 | -------------------------------------------------------------------------------- /mods/bbcode/TODO: -------------------------------------------------------------------------------- 1 | * update the help information with the new [email] syntax 2 | * add the new [list] tag to the help information 3 | -------------------------------------------------------------------------------- /mods/bbcode/colorpicker/images/select_arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/bbcode/colorpicker/images/select_arrow.gif -------------------------------------------------------------------------------- /mods/bbcode/colorpicker/images/select_arrow_down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/bbcode/colorpicker/images/select_arrow_down.gif -------------------------------------------------------------------------------- /mods/bbcode/colorpicker/images/select_arrow_over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/bbcode/colorpicker/images/select_arrow_over.gif -------------------------------------------------------------------------------- /mods/bbcode/colorpicker/images/slider_handle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/bbcode/colorpicker/images/slider_handle.gif -------------------------------------------------------------------------------- /mods/bbcode/colorpicker/images/tab_center_active.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/bbcode/colorpicker/images/tab_center_active.gif -------------------------------------------------------------------------------- /mods/bbcode/colorpicker/images/tab_left_active.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/bbcode/colorpicker/images/tab_left_active.gif -------------------------------------------------------------------------------- /mods/bbcode/colorpicker/images/tab_left_inactive.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/bbcode/colorpicker/images/tab_left_inactive.gif -------------------------------------------------------------------------------- /mods/bbcode/colorpicker/images/tab_right_active.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/bbcode/colorpicker/images/tab_right_active.gif -------------------------------------------------------------------------------- /mods/bbcode/colorpicker/images/tab_right_inactive.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/bbcode/colorpicker/images/tab_right_inactive.gif -------------------------------------------------------------------------------- /mods/bbcode/help/czech/bbcode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/bbcode/help/czech/bbcode.php -------------------------------------------------------------------------------- /mods/bbcode/help/finnish/bbcode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/bbcode/help/finnish/bbcode.php -------------------------------------------------------------------------------- /mods/bbcode/help/italian/bbcode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/bbcode/help/italian/bbcode.php -------------------------------------------------------------------------------- /mods/bbcode/help/spanish/bbcode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/bbcode/help/spanish/bbcode.php -------------------------------------------------------------------------------- /mods/bbcode/help/thumbsup.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/bbcode/help/thumbsup.gif -------------------------------------------------------------------------------- /mods/bbcode/icons/b.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/bbcode/icons/b.gif -------------------------------------------------------------------------------- /mods/bbcode/icons/center.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/bbcode/icons/center.gif -------------------------------------------------------------------------------- /mods/bbcode/icons/code.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/bbcode/icons/code.gif -------------------------------------------------------------------------------- /mods/bbcode/icons/color.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/bbcode/icons/color.gif -------------------------------------------------------------------------------- /mods/bbcode/icons/email.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/bbcode/icons/email.gif -------------------------------------------------------------------------------- /mods/bbcode/icons/hr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/bbcode/icons/hr.gif -------------------------------------------------------------------------------- /mods/bbcode/icons/i.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/bbcode/icons/i.gif -------------------------------------------------------------------------------- /mods/bbcode/icons/img.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/bbcode/icons/img.gif -------------------------------------------------------------------------------- /mods/bbcode/icons/large.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/bbcode/icons/large.gif -------------------------------------------------------------------------------- /mods/bbcode/icons/left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/bbcode/icons/left.gif -------------------------------------------------------------------------------- /mods/bbcode/icons/list.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/bbcode/icons/list.gif -------------------------------------------------------------------------------- /mods/bbcode/icons/quote.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/bbcode/icons/quote.gif -------------------------------------------------------------------------------- /mods/bbcode/icons/right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/bbcode/icons/right.gif -------------------------------------------------------------------------------- /mods/bbcode/icons/s.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/bbcode/icons/s.gif -------------------------------------------------------------------------------- /mods/bbcode/icons/size.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/bbcode/icons/size.gif -------------------------------------------------------------------------------- /mods/bbcode/icons/small.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/bbcode/icons/small.gif -------------------------------------------------------------------------------- /mods/bbcode/icons/sub.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/bbcode/icons/sub.gif -------------------------------------------------------------------------------- /mods/bbcode/icons/subjectsmiley.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/bbcode/icons/subjectsmiley.gif -------------------------------------------------------------------------------- /mods/bbcode/icons/sup.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/bbcode/icons/sup.gif -------------------------------------------------------------------------------- /mods/bbcode/icons/u.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/bbcode/icons/u.gif -------------------------------------------------------------------------------- /mods/bbcode/icons/url.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/bbcode/icons/url.gif -------------------------------------------------------------------------------- /mods/bbcode/lang/french.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/bbcode/lang/french.php -------------------------------------------------------------------------------- /mods/bbcode/templates/emerald/disable_option.tpl: -------------------------------------------------------------------------------- 1 | meta->disable_bbcode} checked="checked"{/IF} /> 3 | 4 | -------------------------------------------------------------------------------- /mods/compat_iconv/info.txt: -------------------------------------------------------------------------------- 1 | title: Compatibility: iconv extension 2 | desc: This module implements a fallback for PHP's iconv() function, in case the "iconv" PHP extension is not enabled. 3 | function. 4 | category: compatibility 5 | version: 1.0.0 6 | author: Phorum Dev Team 7 | url: http://www.phorum.org/ 8 | 9 | compat:iconv|iconv 10 | -------------------------------------------------------------------------------- /mods/compat_json/info.txt: -------------------------------------------------------------------------------- 1 | title: Compatibility: json extension 2 | desc: This module implements a fallback for PHP's json_encode() and json_decode() functions in case the "json" PHP extension is not enabled. 3 | category: compatibility 4 | version: 1.0.0 5 | author: Phorum Dev Team 6 | url: http://www.phorum.org/ 7 | 8 | compat:json|json_encode 9 | compat:json|json_decode 10 | -------------------------------------------------------------------------------- /mods/compat_mbstring/info.txt: -------------------------------------------------------------------------------- 1 | title: Compatibility: mbstring extension 2 | desc: This module implements a fallback for PHP's mb_substr() function, in case the "mbstring" PHP extension is not enabled. 3 | category: compatibility 4 | version: 1.0.0 5 | author: Phorum Dev Team 6 | url: http://www.phorum.org/ 7 | 8 | compat:mbstring|mb_substr 9 | -------------------------------------------------------------------------------- /mods/compat_random/compat_random.php: -------------------------------------------------------------------------------- 1 | 11 | -------------------------------------------------------------------------------- /mods/compat_random/info.txt: -------------------------------------------------------------------------------- 1 | title: Compatibility: Random Extension 2 | desc: This module implements a PHP 5.x fallback for random_bytes and random_int functions. 3 | category: compatibility 4 | version: 1.0.0 5 | author: Phorum Dev Team 6 | url: http://www.phorum.org/ 7 | 8 | compat:random|random_bytes 9 | compat:random|random_int 10 | -------------------------------------------------------------------------------- /mods/compat_random/random_compat-2.0.2/build-phar.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | basedir=$( dirname $( readlink -f ${BASH_SOURCE[0]} ) ) 4 | 5 | php -dphar.readonly=0 "$basedir/other/build_phar.php" $* -------------------------------------------------------------------------------- /mods/compat_random/random_compat-2.0.2/dist/random_compat.phar.pubkey: -------------------------------------------------------------------------------- 1 | -----BEGIN PUBLIC KEY----- 2 | MHYwEAYHKoZIzj0CAQYFK4EEACIDYgAEEd+wCqJDrx5B4OldM0dQE0ZMX+lx1ZWm 3 | pui0SUqD4G29L3NGsz9UhJ/0HjBdbnkhIK5xviT0X5vtjacF6ajgcCArbTB+ds+p 4 | +h7Q084NuSuIpNb6YPfoUFgC/CL9kAoc 5 | -----END PUBLIC KEY----- 6 | -------------------------------------------------------------------------------- /mods/compat_stripos/compat_stripos.php: -------------------------------------------------------------------------------- 1 | 14 | -------------------------------------------------------------------------------- /mods/editor_tools/.htaccess: -------------------------------------------------------------------------------- 1 | # Allow access to our image file. 2 | 3 | Order allow,deny 4 | Allow from all 5 | 6 | 7 | -------------------------------------------------------------------------------- /mods/editor_tools/icons/help.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/editor_tools/icons/help.gif -------------------------------------------------------------------------------- /mods/editor_tools/lang/czech-latin2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/editor_tools/lang/czech-latin2.php -------------------------------------------------------------------------------- /mods/editor_tools/lang/czech-utf8.php: -------------------------------------------------------------------------------- 1 | 'Informace nápovědy', 5 | ); 6 | ?> 7 | -------------------------------------------------------------------------------- /mods/editor_tools/lang/czech-win1250.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/editor_tools/lang/czech-win1250.php -------------------------------------------------------------------------------- /mods/editor_tools/lang/dutch.php: -------------------------------------------------------------------------------- 1 | 'Help informatie', 5 | ); 6 | ?> 7 | -------------------------------------------------------------------------------- /mods/editor_tools/lang/english.php: -------------------------------------------------------------------------------- 1 | 'Help information', 5 | ); 6 | ?> 7 | -------------------------------------------------------------------------------- /mods/editor_tools/lang/finnish.php: -------------------------------------------------------------------------------- 1 | 'Ohjeita', 5 | ); 6 | ?> 7 | -------------------------------------------------------------------------------- /mods/editor_tools/lang/french.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/editor_tools/lang/french.php -------------------------------------------------------------------------------- /mods/editor_tools/lang/german.php: -------------------------------------------------------------------------------- 1 | 'Hilfen', 5 | ); 6 | ?> 7 | -------------------------------------------------------------------------------- /mods/editor_tools/lang/italian.php: -------------------------------------------------------------------------------- 1 | 'Assistenza', 5 | ); 6 | ?> 7 | -------------------------------------------------------------------------------- /mods/editor_tools/lang/spanish.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/editor_tools/lang/spanish.php -------------------------------------------------------------------------------- /mods/editor_tools/lang/swedish.php: -------------------------------------------------------------------------------- 1 |  'Hjälp information', 5 | ); 6 | ?> 7 | -------------------------------------------------------------------------------- /mods/editor_tools/lang/turkish.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/editor_tools/lang/turkish.php -------------------------------------------------------------------------------- /mods/event_logging/db/mysql/2.php: -------------------------------------------------------------------------------- 1 | 11 | -------------------------------------------------------------------------------- /mods/event_logging/images/loglevels/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/event_logging/images/loglevels/0.png -------------------------------------------------------------------------------- /mods/event_logging/images/loglevels/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/event_logging/images/loglevels/1.png -------------------------------------------------------------------------------- /mods/event_logging/images/loglevels/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/event_logging/images/loglevels/2.png -------------------------------------------------------------------------------- /mods/event_logging/images/loglevels/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/event_logging/images/loglevels/3.png -------------------------------------------------------------------------------- /mods/event_logging/images/loglevels/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/event_logging/images/loglevels/4.png -------------------------------------------------------------------------------- /mods/event_logging/settings/filter.php: -------------------------------------------------------------------------------- 1 | 8 | 9 | -------------------------------------------------------------------------------- /mods/replace/info.txt: -------------------------------------------------------------------------------- 1 | hook: format|phorum_mod_replace 2 | title: Replace Text 3 | desc: This module allows admins to define simple text replacements that have to be applied to messages. 4 | author: Phorum Dev Team 5 | url: http://www.phorum.org/ 6 | -------------------------------------------------------------------------------- /mods/smileys/help/czech/smileys.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/smileys/help/czech/smileys.php -------------------------------------------------------------------------------- /mods/smileys/help/finnish/smileys.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/smileys/help/finnish/smileys.php -------------------------------------------------------------------------------- /mods/smileys/help/spanish/smileys.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/smileys/help/spanish/smileys.php -------------------------------------------------------------------------------- /mods/smileys/icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/smileys/icon.gif -------------------------------------------------------------------------------- /mods/smileys/images/angry.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/smileys/images/angry.gif -------------------------------------------------------------------------------- /mods/smileys/images/baringteeth.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/smileys/images/baringteeth.gif -------------------------------------------------------------------------------- /mods/smileys/images/confused.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/smileys/images/confused.gif -------------------------------------------------------------------------------- /mods/smileys/images/cool.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/smileys/images/cool.gif -------------------------------------------------------------------------------- /mods/smileys/images/crying.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/smileys/images/crying.gif -------------------------------------------------------------------------------- /mods/smileys/images/disappointed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/smileys/images/disappointed.gif -------------------------------------------------------------------------------- /mods/smileys/images/embarrassed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/smileys/images/embarrassed.gif -------------------------------------------------------------------------------- /mods/smileys/images/footinmouth.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/smileys/images/footinmouth.gif -------------------------------------------------------------------------------- /mods/smileys/images/frowning.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/smileys/images/frowning.gif -------------------------------------------------------------------------------- /mods/smileys/images/hot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/smileys/images/hot.gif -------------------------------------------------------------------------------- /mods/smileys/images/innocent.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/smileys/images/innocent.gif -------------------------------------------------------------------------------- /mods/smileys/images/kissing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/smileys/images/kissing.gif -------------------------------------------------------------------------------- /mods/smileys/images/laughing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/smileys/images/laughing.gif -------------------------------------------------------------------------------- /mods/smileys/images/lipsaresealed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/smileys/images/lipsaresealed.gif -------------------------------------------------------------------------------- /mods/smileys/images/nerd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/smileys/images/nerd.gif -------------------------------------------------------------------------------- /mods/smileys/images/rolleyes.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/smileys/images/rolleyes.gif -------------------------------------------------------------------------------- /mods/smileys/images/sick.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/smileys/images/sick.gif -------------------------------------------------------------------------------- /mods/smileys/images/sleepy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/smileys/images/sleepy.gif -------------------------------------------------------------------------------- /mods/smileys/images/smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/smileys/images/smile.gif -------------------------------------------------------------------------------- /mods/smileys/images/smiley12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/smileys/images/smiley12.gif -------------------------------------------------------------------------------- /mods/smileys/images/smiley14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/smileys/images/smiley14.gif -------------------------------------------------------------------------------- /mods/smileys/images/smiley15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/smileys/images/smiley15.gif -------------------------------------------------------------------------------- /mods/smileys/images/smiley16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/smileys/images/smiley16.gif -------------------------------------------------------------------------------- /mods/smileys/images/smiley17.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/smileys/images/smiley17.gif -------------------------------------------------------------------------------- /mods/smileys/images/smiley23.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/smileys/images/smiley23.gif -------------------------------------------------------------------------------- /mods/smileys/images/smiley24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/smileys/images/smiley24.gif -------------------------------------------------------------------------------- /mods/smileys/images/smiley25.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/smileys/images/smiley25.gif -------------------------------------------------------------------------------- /mods/smileys/images/smilie1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/smileys/images/smilie1.gif -------------------------------------------------------------------------------- /mods/smileys/images/smilie10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/smileys/images/smilie10.gif -------------------------------------------------------------------------------- /mods/smileys/images/smilie11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/smileys/images/smilie11.gif -------------------------------------------------------------------------------- /mods/smileys/images/smilie2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/smileys/images/smilie2.gif -------------------------------------------------------------------------------- /mods/smileys/images/smilie3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/smileys/images/smilie3.gif -------------------------------------------------------------------------------- /mods/smileys/images/smilie4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/smileys/images/smilie4.gif -------------------------------------------------------------------------------- /mods/smileys/images/smilie5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/smileys/images/smilie5.gif -------------------------------------------------------------------------------- /mods/smileys/images/smilie6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/smileys/images/smilie6.gif -------------------------------------------------------------------------------- /mods/smileys/images/smilie7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/smileys/images/smilie7.gif -------------------------------------------------------------------------------- /mods/smileys/images/smilie8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/smileys/images/smilie8.gif -------------------------------------------------------------------------------- /mods/smileys/images/smilie9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/smileys/images/smilie9.gif -------------------------------------------------------------------------------- /mods/smileys/images/suprised.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/smileys/images/suprised.gif -------------------------------------------------------------------------------- /mods/smileys/images/thinking.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/smileys/images/thinking.gif -------------------------------------------------------------------------------- /mods/smileys/images/tounge.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/smileys/images/tounge.gif -------------------------------------------------------------------------------- /mods/smileys/images/undecided.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/smileys/images/undecided.gif -------------------------------------------------------------------------------- /mods/smileys/images/wink.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/smileys/images/wink.gif -------------------------------------------------------------------------------- /mods/smileys/lang/czech-latin2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/smileys/lang/czech-latin2.php -------------------------------------------------------------------------------- /mods/smileys/lang/czech-win1250.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/smileys/lang/czech-win1250.php -------------------------------------------------------------------------------- /mods/smileys/lang/finnish.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/smileys/lang/finnish.php -------------------------------------------------------------------------------- /mods/smileys/lang/french.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/smileys/lang/french.php -------------------------------------------------------------------------------- /mods/smileys/lang/turkish.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/smileys/lang/turkish.php -------------------------------------------------------------------------------- /mods/smileys/smileys.css: -------------------------------------------------------------------------------- 1 | .mod_smileys_img { 2 | vertical-align: middle; 3 | margin: 0px 3px 0px 3px; 4 | border: none; 5 | } 6 | -------------------------------------------------------------------------------- /mods/smileys/templates/emerald/disable_option.tpl: -------------------------------------------------------------------------------- 1 | meta->disable_smileys} checked="checked"{/IF} /> 3 | 4 | -------------------------------------------------------------------------------- /mods/smtp_mail/phpmailer/VERSION: -------------------------------------------------------------------------------- 1 | 5.2.10 -------------------------------------------------------------------------------- /mods/spamhurdles/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Order allow,deny 3 | Allow from all 4 | 5 | 6 | -------------------------------------------------------------------------------- /mods/spamhurdles/captcha/fonts/font3.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/spamhurdles/captcha/fonts/font3.ttf -------------------------------------------------------------------------------- /mods/spamhurdles/captcha/recaptcha-php-1.9/README: -------------------------------------------------------------------------------- 1 | reCAPTCHA README 2 | ================ 3 | 4 | The reCAPTCHA PHP Lirary helps you use the reCAPTCHA API. Documentation 5 | for this library can be found at 6 | 7 | http://recaptcha.net/plugins/php 8 | -------------------------------------------------------------------------------- /mods/spamhurdles/images/datasphorum.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/spamhurdles/images/datasphorum.jpg -------------------------------------------------------------------------------- /mods/spamhurdles/images/datasphorum_thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/spamhurdles/images/datasphorum_thumb.jpg -------------------------------------------------------------------------------- /mods/spamhurdles/images/pixel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/spamhurdles/images/pixel.gif -------------------------------------------------------------------------------- /mods/spamhurdles/lang/french.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/spamhurdles/lang/french.php -------------------------------------------------------------------------------- /mods/spamhurdles/lang/german.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/spamhurdles/lang/german.php -------------------------------------------------------------------------------- /mods/spamhurdles/lang/german_sie.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/spamhurdles/lang/german_sie.php -------------------------------------------------------------------------------- /mods/spamhurdles/lang/spanish_latin_american.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/spamhurdles/lang/spanish_latin_american.php -------------------------------------------------------------------------------- /mods/spamhurdles/lang/turkish.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/spamhurdles/lang/turkish.php -------------------------------------------------------------------------------- /mods/spamhurdles/templates/classic/audio.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/spamhurdles/templates/classic/audio.gif -------------------------------------------------------------------------------- /mods/spamhurdles/templates/classic/editor_block.tpl: -------------------------------------------------------------------------------- 1 | {IF EDITOR "posting"} 2 |
3 | {ELSEIF EDITOR "pm"} 4 |
5 | {ELSE} {! unknown type, but let's put in a div } 6 |
7 | {/IF} 8 | {CONTENT} 9 | 10 | -------------------------------------------------------------------------------- /mods/spamhurdles/templates/emerald/audio.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/spamhurdles/templates/emerald/audio.gif -------------------------------------------------------------------------------- /mods/spamhurdles/templates/emerald/editor_block.tpl: -------------------------------------------------------------------------------- 1 | {! In Emerald, we escape the tag that is open around the } 2 | {! editor header code. We use ourselves in our output code } 3 | {! and on would make . There is no need to } 4 | {! differentate between EDITOR = "posting" or EDITOR = "pm" here. } 5 | 6 | {CONTENT} 7 | 8 | -------------------------------------------------------------------------------- /mods/username_restrictions/lang/turkish.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/mods/username_restrictions/lang/turkish.php -------------------------------------------------------------------------------- /portable/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all 2 | -------------------------------------------------------------------------------- /scripts/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all 2 | -------------------------------------------------------------------------------- /templates/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Order allow,deny 3 | Deny from all 4 | -------------------------------------------------------------------------------- /templates/classic/css_print.tpl: -------------------------------------------------------------------------------- 1 | {INCLUDE "css"} 2 | /* Printing classes */ 3 | /* Override classes from css.tpl */ 4 | 5 | .PhorumNavBlock,.PhorumReadNavBlock 6 | { 7 | display: none; 8 | } 9 | -------------------------------------------------------------------------------- /templates/classic/images/carat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/classic/images/carat.gif -------------------------------------------------------------------------------- /templates/classic/images/delete.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/classic/images/delete.gif -------------------------------------------------------------------------------- /templates/classic/images/gauge.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/classic/images/gauge.gif -------------------------------------------------------------------------------- /templates/classic/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/classic/images/logo.png -------------------------------------------------------------------------------- /templates/classic/images/square_bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/classic/images/square_bullet.png -------------------------------------------------------------------------------- /templates/classic/images/tree-L.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/classic/images/tree-L.gif -------------------------------------------------------------------------------- /templates/classic/info.php: -------------------------------------------------------------------------------- 1 | 11 | -------------------------------------------------------------------------------- /templates/classic/loginout_menu.tpl: -------------------------------------------------------------------------------- 1 | {IF LOGGEDIN true}{LANG->MyProfile}•{IF ENABLE_PM}{LANG->PrivateMessages}•{/IF}{LANG->LogOut}{ELSE}{LANG->LogIn}{/IF} -------------------------------------------------------------------------------- /templates/classic/pm_folders.formstart.tpl: -------------------------------------------------------------------------------- 1 |
2 | {POST_VARS} 3 | 4 | -------------------------------------------------------------------------------- /templates/classic/stdblock.tpl: -------------------------------------------------------------------------------- 1 |
2 | {IF BLOCK_TITLE} 3 |
{BLOCK_TITLE}
4 | {/IF} 5 |
{BLOCK_CONTENT}
6 |
7 | -------------------------------------------------------------------------------- /templates/emerald/images/accept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/emerald/images/accept.png -------------------------------------------------------------------------------- /templates/emerald/images/ajax_progress.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/emerald/images/ajax_progress.gif -------------------------------------------------------------------------------- /templates/emerald/images/arrow_divide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/emerald/images/arrow_divide.png -------------------------------------------------------------------------------- /templates/emerald/images/arrow_join.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/emerald/images/arrow_join.png -------------------------------------------------------------------------------- /templates/emerald/images/attach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/emerald/images/attach.png -------------------------------------------------------------------------------- /templates/emerald/images/bell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/emerald/images/bell.png -------------------------------------------------------------------------------- /templates/emerald/images/bullet_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/emerald/images/bullet_black.png -------------------------------------------------------------------------------- /templates/emerald/images/bullet_go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/emerald/images/bullet_go.png -------------------------------------------------------------------------------- /templates/emerald/images/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/emerald/images/cancel.png -------------------------------------------------------------------------------- /templates/emerald/images/carat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/emerald/images/carat.gif -------------------------------------------------------------------------------- /templates/emerald/images/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/emerald/images/comment.png -------------------------------------------------------------------------------- /templates/emerald/images/comment_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/emerald/images/comment_add.png -------------------------------------------------------------------------------- /templates/emerald/images/comment_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/emerald/images/comment_delete.png -------------------------------------------------------------------------------- /templates/emerald/images/comment_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/emerald/images/comment_edit.png -------------------------------------------------------------------------------- /templates/emerald/images/comments_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/emerald/images/comments_add.png -------------------------------------------------------------------------------- /templates/emerald/images/control_first.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/emerald/images/control_first.png -------------------------------------------------------------------------------- /templates/emerald/images/control_last.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/emerald/images/control_last.png -------------------------------------------------------------------------------- /templates/emerald/images/control_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/emerald/images/control_next.png -------------------------------------------------------------------------------- /templates/emerald/images/control_prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/emerald/images/control_prev.png -------------------------------------------------------------------------------- /templates/emerald/images/delete.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/emerald/images/delete.gif -------------------------------------------------------------------------------- /templates/emerald/images/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/emerald/images/delete.png -------------------------------------------------------------------------------- /templates/emerald/images/dialog-warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/emerald/images/dialog-warning.png -------------------------------------------------------------------------------- /templates/emerald/images/email_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/emerald/images/email_delete.png -------------------------------------------------------------------------------- /templates/emerald/images/exclamation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/emerald/images/exclamation.png -------------------------------------------------------------------------------- /templates/emerald/images/feed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/emerald/images/feed.png -------------------------------------------------------------------------------- /templates/emerald/images/flag_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/emerald/images/flag_red.png -------------------------------------------------------------------------------- /templates/emerald/images/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/emerald/images/folder.png -------------------------------------------------------------------------------- /templates/emerald/images/gauge.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/emerald/images/gauge.gif -------------------------------------------------------------------------------- /templates/emerald/images/generic_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/emerald/images/generic_background.png -------------------------------------------------------------------------------- /templates/emerald/images/group_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/emerald/images/group_add.png -------------------------------------------------------------------------------- /templates/emerald/images/header_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/emerald/images/header_background.png -------------------------------------------------------------------------------- /templates/emerald/images/information.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/emerald/images/information.png -------------------------------------------------------------------------------- /templates/emerald/images/key_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/emerald/images/key_delete.png -------------------------------------------------------------------------------- /templates/emerald/images/key_go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/emerald/images/key_go.png -------------------------------------------------------------------------------- /templates/emerald/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/emerald/images/lock.png -------------------------------------------------------------------------------- /templates/emerald/images/lock_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/emerald/images/lock_open.png -------------------------------------------------------------------------------- /templates/emerald/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/emerald/images/logo.png -------------------------------------------------------------------------------- /templates/emerald/images/message_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/emerald/images/message_background.png -------------------------------------------------------------------------------- /templates/emerald/images/note_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/emerald/images/note_add.png -------------------------------------------------------------------------------- /templates/emerald/images/page_go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/emerald/images/page_go.png -------------------------------------------------------------------------------- /templates/emerald/images/printer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/emerald/images/printer.png -------------------------------------------------------------------------------- /templates/emerald/images/square_bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/emerald/images/square_bullet.png -------------------------------------------------------------------------------- /templates/emerald/images/table_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/emerald/images/table_add.png -------------------------------------------------------------------------------- /templates/emerald/images/tag_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/emerald/images/tag_green.png -------------------------------------------------------------------------------- /templates/emerald/images/text_align_justify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/emerald/images/text_align_justify.png -------------------------------------------------------------------------------- /templates/emerald/images/top_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/emerald/images/top_background.png -------------------------------------------------------------------------------- /templates/emerald/images/tree-L.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/emerald/images/tree-L.gif -------------------------------------------------------------------------------- /templates/emerald/images/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/emerald/images/user.png -------------------------------------------------------------------------------- /templates/emerald/images/user_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/emerald/images/user_add.png -------------------------------------------------------------------------------- /templates/emerald/images/user_comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/emerald/images/user_comment.png -------------------------------------------------------------------------------- /templates/emerald/images/user_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/emerald/images/user_edit.png -------------------------------------------------------------------------------- /templates/emerald/images/zoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/emerald/images/zoom.png -------------------------------------------------------------------------------- /templates/emerald/info.php: -------------------------------------------------------------------------------- 1 | 11 | -------------------------------------------------------------------------------- /templates/emerald/stdblock.tpl: -------------------------------------------------------------------------------- 1 | 2 |
3 | {IF BLOCK_TITLE} 4 |

{BLOCK_TITLE}

5 | {/IF} 6 |

{BLOCK_CONTENT}

7 |
8 | 9 | -------------------------------------------------------------------------------- /templates/lightweight/footer.tpl: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | {IF DBDEBUG}{INCLUDE "dbdebug"}{/IF} 5 | 6 |
7 | 8 | 9 | -------------------------------------------------------------------------------- /templates/lightweight/images/accept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/lightweight/images/accept.png -------------------------------------------------------------------------------- /templates/lightweight/images/arrow_divide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/lightweight/images/arrow_divide.png -------------------------------------------------------------------------------- /templates/lightweight/images/arrow_join.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/lightweight/images/arrow_join.png -------------------------------------------------------------------------------- /templates/lightweight/images/attach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/lightweight/images/attach.png -------------------------------------------------------------------------------- /templates/lightweight/images/bell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/lightweight/images/bell.png -------------------------------------------------------------------------------- /templates/lightweight/images/bullet_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/lightweight/images/bullet_black.png -------------------------------------------------------------------------------- /templates/lightweight/images/bullet_go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/lightweight/images/bullet_go.png -------------------------------------------------------------------------------- /templates/lightweight/images/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/lightweight/images/cancel.png -------------------------------------------------------------------------------- /templates/lightweight/images/carat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/lightweight/images/carat.gif -------------------------------------------------------------------------------- /templates/lightweight/images/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/lightweight/images/comment.png -------------------------------------------------------------------------------- /templates/lightweight/images/comment_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/lightweight/images/comment_add.png -------------------------------------------------------------------------------- /templates/lightweight/images/comment_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/lightweight/images/comment_delete.png -------------------------------------------------------------------------------- /templates/lightweight/images/comment_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/lightweight/images/comment_edit.png -------------------------------------------------------------------------------- /templates/lightweight/images/comments_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/lightweight/images/comments_add.png -------------------------------------------------------------------------------- /templates/lightweight/images/control_first.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/lightweight/images/control_first.png -------------------------------------------------------------------------------- /templates/lightweight/images/control_last.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/lightweight/images/control_last.png -------------------------------------------------------------------------------- /templates/lightweight/images/control_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/lightweight/images/control_next.png -------------------------------------------------------------------------------- /templates/lightweight/images/control_prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/lightweight/images/control_prev.png -------------------------------------------------------------------------------- /templates/lightweight/images/delete.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/lightweight/images/delete.gif -------------------------------------------------------------------------------- /templates/lightweight/images/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/lightweight/images/delete.png -------------------------------------------------------------------------------- /templates/lightweight/images/dialog-warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/lightweight/images/dialog-warning.png -------------------------------------------------------------------------------- /templates/lightweight/images/email_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/lightweight/images/email_delete.png -------------------------------------------------------------------------------- /templates/lightweight/images/exclamation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/lightweight/images/exclamation.png -------------------------------------------------------------------------------- /templates/lightweight/images/feed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/lightweight/images/feed.png -------------------------------------------------------------------------------- /templates/lightweight/images/flag_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/lightweight/images/flag_red.png -------------------------------------------------------------------------------- /templates/lightweight/images/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/lightweight/images/folder.png -------------------------------------------------------------------------------- /templates/lightweight/images/gauge.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/lightweight/images/gauge.gif -------------------------------------------------------------------------------- /templates/lightweight/images/generic_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/lightweight/images/generic_background.png -------------------------------------------------------------------------------- /templates/lightweight/images/group_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/lightweight/images/group_add.png -------------------------------------------------------------------------------- /templates/lightweight/images/header_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/lightweight/images/header_background.png -------------------------------------------------------------------------------- /templates/lightweight/images/information.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/lightweight/images/information.png -------------------------------------------------------------------------------- /templates/lightweight/images/key_go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/lightweight/images/key_go.png -------------------------------------------------------------------------------- /templates/lightweight/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/lightweight/images/lock.png -------------------------------------------------------------------------------- /templates/lightweight/images/lock_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/lightweight/images/lock_open.png -------------------------------------------------------------------------------- /templates/lightweight/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/lightweight/images/logo.png -------------------------------------------------------------------------------- /templates/lightweight/images/message_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/lightweight/images/message_background.png -------------------------------------------------------------------------------- /templates/lightweight/images/note_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/lightweight/images/note_add.png -------------------------------------------------------------------------------- /templates/lightweight/images/page_go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/lightweight/images/page_go.png -------------------------------------------------------------------------------- /templates/lightweight/images/printer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/lightweight/images/printer.png -------------------------------------------------------------------------------- /templates/lightweight/images/square_bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/lightweight/images/square_bullet.png -------------------------------------------------------------------------------- /templates/lightweight/images/table_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/lightweight/images/table_add.png -------------------------------------------------------------------------------- /templates/lightweight/images/tag_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/lightweight/images/tag_green.png -------------------------------------------------------------------------------- /templates/lightweight/images/text_align_justify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/lightweight/images/text_align_justify.png -------------------------------------------------------------------------------- /templates/lightweight/images/top-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/lightweight/images/top-background.png -------------------------------------------------------------------------------- /templates/lightweight/images/tree-L.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/lightweight/images/tree-L.gif -------------------------------------------------------------------------------- /templates/lightweight/images/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/lightweight/images/user.png -------------------------------------------------------------------------------- /templates/lightweight/images/user_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/lightweight/images/user_add.png -------------------------------------------------------------------------------- /templates/lightweight/images/user_comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/lightweight/images/user_comment.png -------------------------------------------------------------------------------- /templates/lightweight/images/user_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/lightweight/images/user_edit.png -------------------------------------------------------------------------------- /templates/lightweight/images/zoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phorum/Core/8ce5dcad812fc66511423d89e8fb9c92e9cb79bc/templates/lightweight/images/zoom.png -------------------------------------------------------------------------------- /templates/lightweight/info.php: -------------------------------------------------------------------------------- 1 | 11 | -------------------------------------------------------------------------------- /templates/lightweight/stdblock.tpl: -------------------------------------------------------------------------------- 1 |
2 | {IF BLOCK_TITLE} 3 |

{BLOCK_TITLE}

4 | {/IF} 5 |

{BLOCK_CONTENT}

6 |
7 | -------------------------------------------------------------------------------- /todo.txt: -------------------------------------------------------------------------------- 1 | For things we actually have on our radar, 2 | see http://phorum.org/cgi-bin/trac.cgi/roadmap --------------------------------------------------------------------------------