diff --git a/boot.php b/boot.php
index c8a8fbc7e..11e805e8b 100755
--- a/boot.php
+++ b/boot.php
@@ -1284,7 +1284,7 @@ function fix_system_urls($oldurl,$newurl) {
// that they can clean up their hubloc tables (this includes directories).
// It's a very expensive operation so you don't want to have to do it often or after your site gets to be large.
- $r = q("select xchan_hash, channel_prvkey from xchan left join channel on channel_hash = xchan_hash where xchan_url = '%s'",
+ $r = q("select * from xchan left join channel on channel_hash = xchan_hash where xchan_url = '%s'",
dbesc($oldurl)
);
if($r) {
@@ -1296,10 +1296,15 @@ function fix_system_urls($oldurl,$newurl) {
$newhost = $parsed['host'];
$rhs = $newhost . (($parsed['port']) ? ':' . $parsed['port'] : '') . (($parsed['path']) ? $parsed['path'] : '');
- $x = q("update xchan set xchan_addr = '%s', xchan_url = '%s', xchan_connurl = '%s' where xchan_hash = '%s' limit 1",
+ $x = q("update xchan set xchan_addr = '%s', xchan_url = '%s', xchan_connurl = '%s', xchan_follow = '%s', xchan_connpage = '%s', xchan_photo_l = '%s', xchan_photo_m = '%s', xchan_photo_s = '%s' where xchan_hash = '%s' limit 1",
dbesc($channel . '@' . $rhs),
- dbesc($newurl),
- dbesc($newurl . '/poco/' . $channel),
+ dbesc(str_replace($oldurl,$newurl,$rr['xchan_url'])),
+ dbesc(str_replace($oldurl,$newurl,$rr['xchan_connurl'])),
+ dbesc(str_replace($oldurl,$newurl,$rr['xchan_follow'])),
+ dbesc(str_replace($oldurl,$newurl,$rr['xchan_connpage'])),
+ dbesc(str_replace($oldurl,$newurl,$rr['xchan_photo_l'])),
+ dbesc(str_replace($oldurl,$newurl,$rr['xchan_photo_m'])),
+ dbesc(str_replace($oldurl,$newurl,$rr['xchan_photo_s'])),
dbesc($rr['xchan_hash'])
);
@@ -2236,6 +2241,10 @@ function zid($s,$address = '') {
$mine = get_my_url();
$myaddr = (($address) ? $address : get_my_address());
+ // FIXME checking against our own channel url is no longer reliable. We may have a lot
+ // of urls attached to out channel. Should probably match against our site, since we
+ // will not need to remote authenticate on our own site anyway.
+
if($mine && $myaddr && (! link_compare($mine,$s)))
$zurl = $s . (($num_slashes >= 3) ? '' : '/') . $achar . 'zid=' . urlencode($myaddr);
else
diff --git a/doc/html/Contact_8php.html b/doc/html/Contact_8php.html
index a7a11c12f..4c7f6190c 100644
--- a/doc/html/Contact_8php.html
+++ b/doc/html/Contact_8php.html
@@ -407,7 +407,7 @@ Functions
diff --git a/doc/html/boot_8php.html b/doc/html/boot_8php.html
index fa0bfc600..728d4d7fb 100644
--- a/doc/html/boot_8php.html
+++ b/doc/html/boot_8php.html
@@ -161,10 +161,10 @@ Functions
|
| profile_load (&$a, $nickname, $profile= '') |
|
- | profile_create_sidebar (&$a) |
- |
- | profile_sidebar ($profile, $block=0) |
- |
+ | profile_create_sidebar (&$a, $connect=true) |
+ |
+ | profile_sidebar ($profile, $block=0, $show_connect=true) |
+ |
| get_birthdays () |
|
| get_events () |
@@ -222,7 +222,7 @@ Variables
|
const | ZOT_REVISION 1 |
|
-const | DB_UPDATE_VERSION 1059 |
+const | DB_UPDATE_VERSION 1064 |
|
const | EOL '<br />' . "\r\n" |
|
@@ -306,6 +306,8 @@ Variables
|
const | PAGE_DIRECTORY_CHANNEL 0x0008 |
|
+const | PAGE_PREMIUM 0x0010 |
+ |
const | PAGE_REMOVED 0x8000 |
|
const | PHOTO_NORMAL 0x0000 |
@@ -676,7 +678,7 @@ Variables
-
Referenced by App\__construct(), _well_known_init(), admin_content(), admin_page_dbsync(), admin_page_users(), admin_post(), allfriends_content(), api_get_user(), attach_init(), channel_content(), channel_init(), common_init(), connections_content(), connections_init(), contactgroup_content(), display_content(), editpost_content(), editwebpage_content(), events_content(), feed_init(), group_content(), group_post(), lastpost_init(), like_content(), lockview_content(), manage_content(), menu_content(), menu_post(), message_content(), mitem_content(), mitem_init(), mitem_post(), new_channel_init(), notify_init(), oembed_init(), oexchange_content(), oexchange_init(), page_content(), page_init(), photo_init(), photos_content(), photos_init(), photos_post(), ping_init(), poco_init(), post_init(), profile_init(), profile_photo_post(), profiles_aside(), profiles_content(), profiles_init(), profiles_post(), queue_run(), register_init(), regmod_content(), settings_aside(), settings_post(), setup_init(), share_init(), starred_init(), subthread_content(), tagger_content(), thing_content(), uexport_init(), update_channel_content(), update_display_content(), update_network_content(), update_search_content(), viewconnections_init(), viewsrc_content(), wall_attach_post(), wall_upload_post(), webpages_content(), and zotfeed_init().
+
Referenced by App\__construct(), _well_known_init(), admin_content(), admin_page_dbsync(), admin_page_users(), admin_post(), allfriends_content(), api_get_user(), attach_init(), channel_content(), channel_init(), common_init(), connect_init(), connections_content(), connections_init(), contactgroup_content(), display_content(), editpost_content(), editwebpage_content(), events_content(), feed_init(), group_content(), group_post(), lastpost_init(), like_content(), lockview_content(), manage_content(), menu_content(), menu_post(), message_content(), mitem_content(), mitem_init(), mitem_post(), new_channel_init(), notify_init(), oembed_init(), oexchange_content(), oexchange_init(), page_content(), page_init(), photo_init(), photos_content(), photos_init(), photos_post(), ping_init(), poco_init(), post_init(), profile_init(), profile_photo_post(), profiles_aside(), profiles_content(), profiles_init(), profiles_post(), queue_run(), register_init(), regmod_content(), settings_aside(), settings_post(), setup_init(), share_init(), starred_init(), subthread_content(), tagger_content(), thing_content(), uexport_init(), update_channel_content(), update_display_content(), update_network_content(), update_search_content(), viewconnections_init(), viewsrc_content(), wall_attach_post(), wall_upload_post(), webpages_content(), and zotfeed_init().
@@ -694,7 +696,7 @@ Variables
-
Referenced by App\__construct(), _well_known_init(), admin_content(), admin_page_dbsync(), admin_page_users(), admin_post(), allfriends_content(), api_get_user(), api_statuses_destroy(), api_statuses_repeat(), api_statuses_show(), attach_init(), channel_content(), channel_init(), common_init(), connections_content(), connections_init(), connections_post(), contactgroup_content(), display_content(), editpost_content(), editwebpage_content(), events_content(), feed_init(), group_content(), group_post(), lastpost_init(), like_content(), lockview_content(), manage_content(), menu_content(), menu_post(), message_aside(), message_content(), mitem_content(), mitem_init(), mitem_post(), new_channel_init(), notify_init(), oembed_init(), oexchange_content(), oexchange_init(), page_content(), page_init(), photo_init(), photos_content(), photos_init(), photos_post(), ping_init(), poco_init(), post_init(), profile_init(), profile_photo_post(), profile_tabs(), profiles_aside(), profiles_content(), profiles_init(), profiles_post(), queue_run(), register_init(), regmod_content(), settings_aside(), settings_post(), setup_init(), share_init(), starred_init(), subthread_content(), tagger_content(), uexport_init(), update_channel_content(), update_display_content(), update_network_content(), update_search_content(), view_init(), viewconnections_init(), viewsrc_content(), wall_attach_post(), wall_upload_post(), webpages_content(), and zotfeed_init().
+
Referenced by App\__construct(), _well_known_init(), admin_content(), admin_page_dbsync(), admin_page_users(), admin_post(), allfriends_content(), api_get_user(), api_statuses_destroy(), api_statuses_repeat(), api_statuses_show(), attach_init(), channel_content(), channel_init(), common_init(), connect_init(), connections_content(), connections_init(), connections_post(), contactgroup_content(), display_content(), editpost_content(), editwebpage_content(), events_content(), feed_init(), group_content(), group_post(), lastpost_init(), like_content(), lockview_content(), manage_content(), menu_content(), menu_post(), message_aside(), message_content(), mitem_content(), mitem_init(), mitem_post(), new_channel_init(), notify_init(), oembed_init(), oexchange_content(), oexchange_init(), page_content(), page_init(), photo_init(), photos_content(), photos_init(), photos_post(), ping_init(), poco_init(), post_init(), profile_init(), profile_photo_post(), profile_tabs(), profiles_aside(), profiles_content(), profiles_init(), profiles_post(), queue_run(), register_init(), regmod_content(), settings_aside(), settings_post(), setup_init(), share_init(), starred_init(), subthread_content(), tagger_content(), uexport_init(), update_channel_content(), update_display_content(), update_network_content(), update_search_content(), view_init(), viewconnections_init(), viewsrc_content(), wall_attach_post(), wall_upload_post(), webpages_content(), and zotfeed_init().
@@ -899,7 +901,7 @@ Variables
-
Referenced by api_user(), change_channel(), channel_content(), events_post(), feed_init(), import_content(), import_post(), lastpost_content(), manage_content(), mood_init(), nav(), new_channel_content(), new_channel_post(), new_contact(), profile_content(), profile_photo_post(), profiles_init(), settings_post(), and zotfeed_init().
+
Referenced by api_user(), change_channel(), channel_content(), events_post(), feed_init(), import_content(), import_post(), lastpost_content(), manage_content(), mood_init(), nav(), new_channel_content(), new_channel_post(), new_contact(), profile_content(), profile_photo_post(), profiles_init(), settings_post(), and zotfeed_init().
@@ -916,7 +918,7 @@ Variables
-
Referenced by FriendicaSmarty\__construct(), FriendicaSmartyEngine\__construct(), abook_toggle_flag(), allowed_public_recips(), api_apply_template(), api_format_items(), api_get_user(), api_statuses_home_timeline(), api_statuses_repeat(), api_user(), argc(), argv(), atom_entry(), authenticate_success(), avatar_img(), bbcode(), best_link_url(), build_sync_packet(), call_hooks(), can_comment_on_post(), categories_widget(), change_channel(), channel_remove(), check_form_security_token(), check_form_security_token_ForbiddenOnErr(), check_form_security_token_redirectOnErr(), check_htaccess(), cli_suggest_run(), common_friends_visitor_widget(), connections_content(), contact_block(), contact_select(), create_identity(), current_theme(), deliver_run(), dfrn_deliver(), drop_item(), event_store(), fetch_url(), fileas_widget(), findpeople_widget(), fix_attached_photo_permissions(), fix_private_photos(), format_event_diaspora(), get_account_id(), get_best_language(), get_birthdays(), get_events(), get_feed_for(), get_form_security_token(), FriendicaSmartyEngine\get_intltext_template(), get_intltext_template(), get_markup_template(), get_observer_hash(), get_plink(), get_theme_config_file(), get_theme_screenshot(), gprobe_run(), group_select(), guess_image_type(), head_add_css(), head_add_js(), head_get_css(), head_get_js(), import_channel_photo(), import_post(), import_profile_photo(), info(), is_site_admin(), item_message_id(), item_photo_menu(), item_redir_and_replace_images(), items_fetch(), load_contact_links(), load_hooks(), login(), FKOAuth1\loginUser(), lrdd(), manage_content(), map_scope(), nav_set_selected(), new_contact(), notice(), notification(), notifier_run(), oembed_fetch_url(), oembed_format_object(), oembed_iframe(), onepoll_run(), ping_init(), poco_load(), poller_run(), post_activity_item(), post_url(), preg_heart(), prepare_body(), proc_run(), process_delivery(), profile_activity(), profile_sidebar(), public_permissions_sql(), replace_macros(), rmagic_init(), saved_searches(), scale_external_images(), search(), send_message(), send_reg_approval_email(), send_status_notifications(), send_verification_email(), smilies(), tag_deliver(), terminate_friendship(), tgroup_check(), theme_include(), tt(), update_suggestions(), user_allow(), vcard_from_xchan(), what_next(), z_fetch_url(), and zot_finger().
+
Referenced by FriendicaSmarty\__construct(), FriendicaSmartyEngine\__construct(), abook_toggle_flag(), allowed_public_recips(), api_apply_template(), api_format_items(), api_get_user(), api_statuses_home_timeline(), api_statuses_repeat(), api_user(), argc(), argv(), atom_entry(), authenticate_success(), avatar_img(), bbcode(), best_link_url(), build_sync_packet(), call_hooks(), can_comment_on_post(), categories_widget(), change_channel(), channel_remove(), check_form_security_token(), check_form_security_token_ForbiddenOnErr(), check_form_security_token_redirectOnErr(), check_htaccess(), cli_suggest_run(), common_friends_visitor_widget(), connections_content(), contact_block(), contact_select(), create_identity(), current_theme(), deliver_run(), dfrn_deliver(), drop_item(), event_store(), fetch_url(), fileas_widget(), findpeople_widget(), fix_attached_photo_permissions(), fix_private_photos(), format_event_diaspora(), get_account_id(), get_best_language(), get_birthdays(), get_events(), get_feed_for(), get_form_security_token(), FriendicaSmartyEngine\get_intltext_template(), get_intltext_template(), get_markup_template(), get_observer_hash(), get_plink(), get_theme_config_file(), get_theme_screenshot(), gprobe_run(), group_select(), guess_image_type(), head_add_css(), head_add_js(), head_get_css(), head_get_js(), import_channel_photo(), import_post(), import_profile_photo(), info(), is_site_admin(), item_message_id(), item_photo_menu(), item_redir_and_replace_images(), items_fetch(), load_contact_links(), load_hooks(), login(), FKOAuth1\loginUser(), lrdd(), manage_content(), map_scope(), nav_set_selected(), new_contact(), notice(), notification(), notifier_run(), oembed_fetch_url(), oembed_format_object(), oembed_iframe(), onepoll_run(), ping_init(), poco_load(), poller_run(), post_activity_item(), post_url(), preg_heart(), prepare_body(), proc_run(), process_delivery(), profile_activity(), profile_sidebar(), public_permissions_sql(), replace_macros(), rmagic_init(), saved_searches(), scale_external_images(), search(), send_message(), send_reg_approval_email(), send_status_notifications(), send_verification_email(), smilies(), tag_deliver(), terminate_friendship(), tgroup_check(), theme_include(), tt(), update_suggestions(), user_allow(), vcard_from_xchan(), what_next(), z_fetch_url(), and zot_finger().
@@ -1014,7 +1016,7 @@ Variables
-
Referenced by attach_by_hash(), attach_by_hash_nodata(), attach_store(), common_content(), common_friends_visitor_widget(), display_content(), editpost_content(), get_public_feed(), item_permissions_sql(), mitem_content(), new_contact(), permissions_sql(), photo_init(), photos_post(), prepare_body(), profile_sidebar(), suggest_content(), tagger_content(), thing_init(), viewconnections_content(), wall_attach_post(), and z_readdir().
+
Referenced by attach_by_hash(), attach_by_hash_nodata(), attach_store(), common_content(), common_friends_visitor_widget(), display_content(), editpost_content(), get_public_feed(), item_permissions_sql(), mitem_content(), new_contact(), permissions_sql(), photo_init(), photos_post(), prepare_body(), profile_sidebar(), suggest_content(), tagger_content(), thing_init(), viewconnections_content(), wall_attach_post(), and z_readdir().
@@ -1047,7 +1049,7 @@ Variables
-
Referenced by admin_page_dbsync(), admin_page_logs_post(), admin_page_plugins(), admin_page_site_post(), admin_page_themes(), admin_page_users(), admin_page_users_post(), admin_post(), api_content(), authenticate_success(), channel_remove(), check_form_security_token_redirectOnErr(), connections_content(), connections_post(), delegate_content(), directory_content(), drop_item(), events_post(), filerm_content(), follow_init(), group_content(), group_post(), import_post(), intro_post(), item_post(), login_content(), lostpass_content(), lostpass_post(), magic_init(), manage_content(), menu_content(), menu_post(), message_content(), mitem_content(), mitem_post(), mood_init(), network_content(), new_channel_post(), notifications_post(), notify_init(), photos_post(), post_init(), profile_photo_post(), profiles_init(), randprof_init(), redir_init(), register_post(), removeme_content(), rmagic_init(), rmagic_post(), search_content(), settings_post(), tagrm_content(), tagrm_post(), toggle_mobile_init(), and zid_init().
+
Referenced by admin_page_dbsync(), admin_page_logs_post(), admin_page_plugins(), admin_page_site_post(), admin_page_themes(), admin_page_users(), admin_page_users_post(), admin_post(), api_content(), authenticate_success(), channel_remove(), check_form_security_token_redirectOnErr(), connect_post(), connections_content(), connections_post(), delegate_content(), directory_content(), drop_item(), events_post(), filerm_content(), follow_init(), group_content(), group_post(), import_post(), intro_post(), item_post(), login_content(), lostpass_content(), lostpass_post(), magic_init(), manage_content(), menu_content(), menu_post(), message_content(), mitem_content(), mitem_post(), mood_init(), network_content(), new_channel_post(), new_contact(), notifications_post(), notify_init(), photos_post(), post_init(), profile_photo_post(), profiles_init(), randprof_init(), redir_init(), register_post(), removeme_content(), rmagic_init(), rmagic_post(), search_content(), settings_post(), tagrm_content(), tagrm_post(), toggle_mobile_init(), and zid_init().
@@ -1080,7 +1082,7 @@ Variables
@@ -1184,7 +1186,7 @@ Variables
-
Referenced by acl_init(), Conversation\add_thread(), allfriends_content(), api_content(), api_get_user(), api_post(), api_user(), best_link_url(), App\build_pagehead(), build_sync_packet(), change_channel(), channel_content(), channel_init(), channel_remove(), chanview_content(), common_friends_visitor_widget(), community_content(), community_init(), connections_content(), connections_init(), connections_post(), contact_select(), contactgroup_content(), conversation(), crepair_content(), crepair_init(), crepair_post(), current_theme(), delegate_content(), directory_aside(), directory_content(), display_content(), drop_item(), drop_items(), editpost_content(), editwebpage_content(), events_content(), events_post(), fbrowser_content(), fileas_widget(), filer_content(), filerm_content(), findpeople_widget(), follow_content(), follow_init(), fsuggest_content(), fsuggest_post(), get_birthdays(), Item\get_comment_box(), get_events(), Item\get_template_data(), get_theme_uid(), group_aside(), group_content(), group_get_members(), group_post(), group_select(), group_side(), hcard_init(), intro_content(), intro_post(), invite_content(), invite_post(), item_content(), item_permissions_sql(), item_photo_menu(), item_post(), lastpost_content(), lastpost_init(), like_puller(), lockview_content(), login(), login_content(), magic_init(), manage_content(), match_content(), menu_content(), menu_post(), message_content(), message_post(), mitem_content(), mitem_init(), mitem_post(), mood_content(), mood_init(), nav(), network_content(), network_init(), new_contact(), nogroup_content(), nogroup_init(), notifications_content(), notifications_post(), notify_content(), notify_init(), oexchange_content(), page_init(), permissions_sql(), photos_content(), photos_init(), photos_post(), ping_init(), poco_init(), poke_content(), poke_init(), post_init(), prepare_body(), private_messages_list(), profile_activity(), profile_content(), profile_create_sidebar(), profile_init(), profile_load(), profile_photo_aside(), profile_photo_init(), profile_photo_post(), profile_sidebar(), profile_tabs(), profiles_aside(), profiles_content(), profiles_init(), profiles_post(), profperm_aside(), profperm_content(), profperm_init(), qsearch_init(), redbasic_form(), redir_init(), regmod_content(), removeme_content(), removeme_post(), rmagic_init(), saved_searches(), search_ac_init(), search_content(), search_init(), search_saved_searches(), service_class_allows(), service_class_fetch(), Conversation\set_mode(), settings_aside(), settings_init(), settings_post(), share_init(), smilies(), starred_init(), stream_perms_api_uids(), subthread_content(), suggest_content(), suggest_init(), tagger_content(), tagrm_content(), tagrm_post(), theme_content(), theme_post(), thing_content(), thing_init(), uexport_init(), vcard_from_xchan(), viewconnections_aside(), viewconnections_content(), viewconnections_init(), viewsrc_content(), webpages_content(), and zid_init().
+
Referenced by acl_init(), Conversation\add_thread(), allfriends_content(), api_content(), api_get_user(), api_post(), api_user(), best_link_url(), App\build_pagehead(), build_sync_packet(), change_channel(), channel_content(), channel_init(), channel_remove(), chanview_content(), common_friends_visitor_widget(), community_content(), community_init(), connect_content(), connect_post(), connections_content(), connections_init(), connections_post(), contact_select(), contactgroup_content(), conversation(), crepair_content(), crepair_init(), crepair_post(), current_theme(), delegate_content(), directory_aside(), directory_content(), display_content(), drop_item(), drop_items(), editpost_content(), editwebpage_content(), events_content(), events_post(), fbrowser_content(), fileas_widget(), filer_content(), filerm_content(), findpeople_widget(), follow_content(), follow_init(), fsuggest_content(), fsuggest_post(), get_birthdays(), Item\get_comment_box(), get_events(), Item\get_template_data(), get_theme_uid(), group_aside(), group_content(), group_get_members(), group_post(), group_select(), group_side(), hcard_init(), intro_content(), intro_post(), invite_content(), invite_post(), item_content(), item_permissions_sql(), item_photo_menu(), item_post(), lastpost_content(), lastpost_init(), like_puller(), lockview_content(), login(), login_content(), magic_init(), manage_content(), match_content(), menu_content(), menu_post(), message_content(), message_post(), mitem_content(), mitem_init(), mitem_post(), mood_content(), mood_init(), nav(), network_content(), network_init(), new_contact(), nogroup_content(), nogroup_init(), notifications_content(), notifications_post(), notify_content(), notify_init(), oexchange_content(), page_init(), permissions_sql(), photos_content(), photos_init(), photos_post(), ping_init(), poco_init(), poke_content(), poke_init(), post_init(), prepare_body(), private_messages_list(), profile_activity(), profile_content(), profile_create_sidebar(), profile_init(), profile_load(), profile_photo_aside(), profile_photo_init(), profile_photo_post(), profile_sidebar(), profile_tabs(), profiles_aside(), profiles_content(), profiles_init(), profiles_post(), profperm_aside(), profperm_content(), profperm_init(), qsearch_init(), redbasic_form(), redir_init(), regmod_content(), removeme_content(), removeme_post(), rmagic_init(), saved_searches(), search_ac_init(), search_content(), search_init(), search_saved_searches(), service_class_allows(), service_class_fetch(), Conversation\set_mode(), settings_aside(), settings_init(), settings_post(), share_init(), smilies(), starred_init(), stream_perms_api_uids(), subthread_content(), suggest_content(), suggest_init(), tagger_content(), tagrm_content(), tagrm_post(), theme_content(), theme_post(), thing_content(), thing_init(), uexport_init(), vcard_from_xchan(), viewconnections_aside(), viewconnections_content(), viewconnections_init(), viewsrc_content(), webpages_content(), and zid_init().
@@ -1236,7 +1238,7 @@ Variables
-
Referenced by admin_content(), admin_page_plugins(), admin_page_themes(), admin_page_users(), admin_page_users_post(), allfriends_content(), api_content(), api_post(), apps_content(), attach_init(), channel_content(), channel_init(), chanview_content(), check_form_security_token_redirectOnErr(), common_content(), common_init(), community_content(), connections_content(), connections_post(), crepair_content(), crepair_post(), delegate_content(), directory_content(), display_content(), drop_item(), editpost_content(), editwebpage_content(), events_content(), events_post(), follow_init(), fsuggest_content(), fsuggest_post(), group_add(), group_content(), group_post(), hcard_init(), import_content(), import_post(), intro_content(), intro_post(), invite_content(), invite_post(), item_post(), lastpost_content(), lastpost_init(), like_content(), lostpass_content(), lostpass_post(), magic_init(), manage_content(), match_content(), menu_content(), menu_post(), message_content(), message_post(), mitem_content(), mitem_init(), mitem_post(), mood_content(), network_content(), network_init(), new_channel_content(), new_channel_post(), nogroup_content(), notifications_content(), notifications_post(), page_content(), photos_content(), photos_post(), poke_content(), post_init(), profile_content(), profile_init(), profile_load(), profile_photo_post(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), register_content(), register_post(), regmod_content(), rmagic_post(), search_content(), settings_post(), suggest_content(), thing_init(), user_deny(), viewconnections_content(), viewsrc_content(), wall_attach_post(), wall_upload_post(), webpages_content(), and xchan_content().
+
Referenced by admin_content(), admin_page_plugins(), admin_page_themes(), admin_page_users(), admin_page_users_post(), allfriends_content(), api_content(), api_post(), apps_content(), attach_init(), channel_content(), channel_init(), chanview_content(), check_form_security_token_redirectOnErr(), common_content(), common_init(), community_content(), connect_init(), connect_post(), connections_content(), connections_post(), crepair_content(), crepair_post(), delegate_content(), directory_content(), display_content(), drop_item(), editpost_content(), editwebpage_content(), events_content(), events_post(), follow_init(), fsuggest_content(), fsuggest_post(), group_add(), group_content(), group_post(), hcard_init(), import_content(), import_post(), intro_content(), intro_post(), invite_content(), invite_post(), item_post(), lastpost_content(), lastpost_init(), like_content(), lostpass_content(), lostpass_post(), magic_init(), manage_content(), match_content(), menu_content(), menu_post(), message_content(), message_post(), mitem_content(), mitem_init(), mitem_post(), mood_content(), network_content(), network_init(), new_channel_content(), new_channel_post(), nogroup_content(), notifications_content(), notifications_post(), page_content(), photos_content(), photos_post(), poke_content(), post_init(), profile_content(), profile_init(), profile_load(), profile_photo_post(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), register_content(), register_post(), regmod_content(), rmagic_post(), search_content(), settings_post(), suggest_content(), thing_init(), user_deny(), viewconnections_content(), viewsrc_content(), wall_attach_post(), wall_upload_post(), webpages_content(), and xchan_content().
@@ -1258,11 +1260,11 @@ Variables
e.g.: proc_run("ls","-la","/tmp");
$cmd and string args are surrounded with ""
-Referenced by build_sync_packet(), connections_content(), connections_post(), create_identity(), directory_run(), drop_item(), drop_items(), events_post(), fsuggest_post(), item_expire(), item_post(), like_content(), mood_init(), new_contact(), notifier_run(), photo_upload(), photos_post(), poller_run(), post_activity_item(), process_delivery(), profile_activity(), profile_photo_post(), profiles_post(), send_message(), settings_post(), tag_deliver(), tagger_content(), thing_init(), zid_init(), and zot_refresh().
+Referenced by build_sync_packet(), connect_post(), connections_content(), connections_post(), create_identity(), directory_run(), drop_item(), drop_items(), events_post(), fsuggest_post(), item_expire(), item_post(), like_content(), mood_init(), new_contact(), notifier_run(), photo_upload(), photos_post(), poller_run(), post_activity_item(), process_delivery(), profile_activity(), profile_photo_post(), profiles_post(), send_message(), settings_post(), tag_deliver(), tagger_content(), thing_init(), zid_init(), and zot_refresh().
-
+
@@ -1270,13 +1272,23 @@ Variables
profile_create_sidebar |
( |
& |
- $a | ) |
+ $a, |
+
+
+ |
|
+ |
+ $connect = true |
+
+
+ |
+ ) |
+ | |
-
Referenced by channel_aside(), common_aside(), hcard_aside(), lastpost_aside(), profile_aside(), profile_photo_aside(), profiles_aside(), profperm_aside(), and viewconnections_aside().
+
Referenced by channel_aside(), common_aside(), connect_init(), hcard_aside(), lastpost_aside(), profile_aside(), profile_photo_aside(), profiles_aside(), profperm_aside(), and viewconnections_aside().
@@ -1315,11 +1327,11 @@ Variables
Profile information is placed in the App structure for later retrieval. Honours the owner's chosen theme for display.
load/reload current theme info
-Referenced by channel_init(), common_init(), hcard_init(), lastpost_init(), page_init(), profile_init(), profile_photo_init(), profiles_init(), profperm_init(), viewconnections_init(), and webpages_content().
+Referenced by channel_init(), common_init(), connect_init(), hcard_init(), lastpost_init(), page_init(), profile_init(), profile_photo_init(), profiles_init(), profperm_init(), viewconnections_init(), and webpages_content().
-
+
@@ -1333,7 +1345,13 @@ Variables
|
|
|
- $block = 0 |
+ $block = 0 , |
+
+
+ |
+ |
+ |
+ $show_connect = true |
|
@@ -1347,7 +1365,7 @@ Variables
: array $profile
Returns HTML string stuitable for sidebar inclusion Exceptions: Returns empty string if passed $profile is wrong type or not populated
-Referenced by profile_create_sidebar().
+Referenced by profile_create_sidebar().
@@ -1398,7 +1416,7 @@ Variables
-
Referenced by channel_content(), community_content(), directory_content(), display_content(), drop_items(), hcard_init(), item_content(), item_permissions_sql(), item_post(), lastpost_content(), nav(), permissions_sql(), photos_content(), photos_init(), photos_post(), poco_init(), post_init(), profile_content(), profile_create_sidebar(), profile_sidebar(), redir_init(), search_content(), subthread_content(), tagger_content(), viewconnections_aside(), viewconnections_content(), viewconnections_init(), zid_init(), and zotfeed_init().
+
Referenced by channel_content(), community_content(), directory_content(), display_content(), drop_items(), hcard_init(), item_content(), item_permissions_sql(), item_post(), lastpost_content(), nav(), permissions_sql(), photos_content(), photos_init(), photos_post(), poco_init(), post_init(), profile_content(), profile_create_sidebar(), profile_sidebar(), redir_init(), search_content(), subthread_content(), tagger_content(), viewconnections_aside(), viewconnections_content(), viewconnections_init(), zid_init(), and zotfeed_init().
@@ -1459,7 +1477,7 @@ Variables
-
Referenced by FriendicaSmarty\__construct(), App\__construct(), acl_init(), admin_page_logs_post(), admin_page_plugins(), admin_page_site(), admin_page_site_post(), admin_page_themes(), admin_page_users_post(), api_content(), api_direct_messages_box(), api_direct_messages_new(), api_favorites(), api_format_messages(), api_get_user(), api_login(), api_post(), api_statuses_f(), api_statuses_home_timeline(), api_statuses_mentions(), api_statuses_public_timeline(), api_statuses_show(), api_statuses_update(), api_statuses_user_timeline(), api_user(), attach_store(), authenticate_success(), bbcode(), bbtoevent(), best_link_url(), App\build_pagehead(), channel_aside(), channel_content(), check_config(), check_form_security_token(), community_content(), connections_aside(), connections_content(), connections_post(), construct_page(), consume_feed(), conversation(), create_account(), create_identity(), crepair_init(), crepair_post(), current_theme(), del_pconfig(), del_xconfig(), delegate_content(), detect_language(), directory_content(), dirfind_init(), dirsearch_content(), encode_rel_links(), events_content(), events_post(), feed_init(), filerm_content(), get_atom_elements(), App\get_baseurl(), get_browser_language(), get_item_elements(), get_max_import_size(), get_my_address(), get_my_url(), get_plink(), get_public_feed(), Item\get_template_data(), group_add(), group_rmv(), hcard_init(), import_post(), import_xchan(), info(), intro_content(), invite_post(), item_post(), item_store(), item_store_update(), lang_selector(), lastpost_aside(), lastpost_content(), load_contact_links(), local_user(), lostpass_content(), lrdd(), magic_init(), mail_store(), message_content(), message_post(), mood_content(), mood_init(), nav(), navbar_complete(), network_content(), network_init(), network_query_get_sel_tab(), new_channel_content(), nogroup_init(), notice(), notifications_content(), oexchange_content(), parse_url_content(), photo_upload(), photos_content(), photos_post(), ping_init(), poco_init(), poco_load(), poke_content(), poke_init(), post_activity_item(), printable(), probe_content(), proc_run(), process_delivery(), profile_photo_post(), profile_sidebar(), profile_tabs(), profiles_post(), qsearch_init(), redir_init(), ref_session_read(), register_content(), register_post(), App\register_template_engine(), regmod_content(), remote_user(), removeme_post(), saved_searches(), search_ac_init(), search_content(), search_init(), search_post(), service_class_allows(), service_class_fetch(), App\set_baseurl(), settings_post(), setup_content(), setup_init(), siteinfo_init(), suggest_init(), t(), tagrm_post(), App\template_engine(), tt(), validate_channelname(), wall_upload_post(), webfinger_content(), wfinger_init(), xchan_content(), z_fetch_url(), z_post_url(), and zfinger_init().
+
Referenced by FriendicaSmarty\__construct(), App\__construct(), acl_init(), admin_page_logs_post(), admin_page_plugins(), admin_page_site(), admin_page_site_post(), admin_page_themes(), admin_page_users_post(), api_content(), api_direct_messages_box(), api_direct_messages_new(), api_favorites(), api_format_messages(), api_get_user(), api_login(), api_post(), api_statuses_f(), api_statuses_home_timeline(), api_statuses_mentions(), api_statuses_public_timeline(), api_statuses_show(), api_statuses_update(), api_statuses_user_timeline(), api_user(), attach_store(), authenticate_success(), bbcode(), bbtoevent(), best_link_url(), App\build_pagehead(), channel_aside(), channel_content(), check_config(), check_form_security_token(), community_content(), connections_aside(), connections_content(), connections_post(), construct_page(), consume_feed(), conversation(), create_account(), create_identity(), crepair_init(), crepair_post(), current_theme(), del_pconfig(), del_xconfig(), delegate_content(), detect_language(), directory_content(), dirfind_init(), dirsearch_content(), encode_rel_links(), events_content(), events_post(), feed_init(), filerm_content(), get_atom_elements(), App\get_baseurl(), get_browser_language(), get_item_elements(), get_max_import_size(), get_my_address(), get_my_url(), get_plink(), get_public_feed(), Item\get_template_data(), group_add(), group_rmv(), hcard_init(), import_post(), import_xchan(), info(), intro_content(), invite_post(), item_post(), item_store(), item_store_update(), lang_selector(), lastpost_aside(), lastpost_content(), load_contact_links(), local_user(), lostpass_content(), lrdd(), magic_init(), mail_store(), message_content(), message_post(), mood_content(), mood_init(), nav(), navbar_complete(), network_content(), network_init(), network_query_get_sel_tab(), new_channel_content(), nogroup_init(), notice(), notifications_content(), oexchange_content(), parse_url_content(), photo_upload(), photos_content(), photos_post(), ping_init(), poco_init(), poco_load(), poke_content(), poke_init(), post_activity_item(), printable(), probe_content(), proc_run(), process_delivery(), profile_photo_post(), profile_sidebar(), profile_tabs(), profiles_post(), qsearch_init(), redir_init(), ref_session_read(), register_content(), register_post(), App\register_template_engine(), regmod_content(), remote_user(), removeme_post(), saved_searches(), search_ac_init(), search_content(), search_init(), search_post(), service_class_allows(), service_class_fetch(), App\set_baseurl(), settings_post(), setup_content(), setup_init(), siteinfo_init(), suggest_init(), t(), tagrm_post(), App\template_engine(), tt(), validate_channelname(), wall_upload_post(), webfinger_content(), wfinger_init(), xchan_content(), z_fetch_url(), z_post_url(), and zfinger_init().
@@ -1527,7 +1545,7 @@ Variables
-
Referenced by allowed_public_recips(), chanlink_cid(), chanlink_hash(), chanlink_url(), channel_content(), chanview_content(), check_config(), connections_content(), conversation(), create_identity(), deliver_run(), directory_content(), display_content(), event_store(), follow_init(), format_css_if_exists(), format_js_if_exists(), group_post(), App\head_get_icon(), head_get_icon(), hostxrd_init(), import_post(), import_xchan(), intro_post(), invite_content(), item_photo_menu(), item_store(), lastpost_content(), login_content(), lostpass_content(), lostpass_post(), magic_init(), magiclink_url(), manage_content(), menu_content(), menu_post(), mitem_content(), mitem_post(), mood_init(), navbar_complete(), network_content(), new_channel_post(), notification(), notifications_post(), notifier_run(), photo_upload(), photos_album_widget(), photos_create_item(), post_init(), profile_activity(), public_recips(), redir_init(), register_post(), removeme_content(), rmagic_init(), rmagic_post(), search_content(), send_reg_approval_email(), send_verification_email(), setup_content(), setup_post(), siteinfo_content(), siteinfo_init(), sync_directories(), tagger_content(), thing_init(), update_suggestions(), user_allow(), vcard_from_xchan(), webpages_content(), wfinger_init(), zfinger_init(), zid_init(), zot_build_packet(), zot_fetch(), and zot_new_uid().
+
Referenced by allowed_public_recips(), chanlink_cid(), chanlink_hash(), chanlink_url(), channel_content(), chanview_content(), check_config(), connect_post(), connections_content(), conversation(), create_identity(), deliver_run(), directory_content(), display_content(), event_store(), follow_init(), format_css_if_exists(), format_js_if_exists(), group_post(), App\head_get_icon(), head_get_icon(), hostxrd_init(), import_post(), import_xchan(), intro_post(), invite_content(), item_photo_menu(), item_store(), lastpost_content(), login_content(), lostpass_content(), lostpass_post(), magic_init(), magiclink_url(), manage_content(), menu_content(), menu_post(), mitem_content(), mitem_post(), mood_init(), navbar_complete(), network_content(), new_channel_post(), notification(), notifications_post(), notifier_run(), photo_upload(), photos_album_widget(), photos_create_item(), post_init(), profile_activity(), profile_sidebar(), public_recips(), redir_init(), register_post(), removeme_content(), rmagic_init(), rmagic_post(), search_content(), send_reg_approval_email(), send_verification_email(), setup_content(), setup_post(), siteinfo_content(), siteinfo_init(), sync_directories(), tagger_content(), thing_init(), update_suggestions(), user_allow(), vcard_from_xchan(), webpages_content(), wfinger_init(), zfinger_init(), zid_init(), zot_build_packet(), zot_fetch(), and zot_new_uid().
@@ -1565,7 +1583,7 @@ Variables
- Returns
- string
'zid' string url - url to accept zid string zid - urlencoded zid string result - the return string we calculated, change it if you want to return something else
-Referenced by bb_ShareAttributes(), conversation(), dirfind_content(), intro_content(), like_puller(), localize_item(), match_content(), menu_render(), notifications_content(), and viewconnections_content().
+Referenced by bb_ShareAttributes(), conversation(), dirfind_content(), intro_content(), like_puller(), localize_item(), match_content(), menu_render(), new_contact(), notifications_content(), and viewconnections_content().
@@ -1668,7 +1686,7 @@ Variables
-
Referenced by abook_connections(), abook_self(), acl_init(), api_get_user(), collect_recipients(), connections_content(), connections_post(), contact_remove(), contact_select(), contactgroup_content(), create_identity(), get_all_perms(), group_content(), group_get_members(), intro_content(), load_contact_links(), new_contact(), notifier_run(), perm_is_allowed(), ping_init(), poco_init(), settings_aside(), and zot_refresh().
+
Referenced by abook_connections(), abook_self(), acl_init(), api_get_user(), collect_recipients(), connections_content(), connections_post(), contact_remove(), contact_select(), contactgroup_content(), create_identity(), get_all_perms(), group_content(), group_get_members(), intro_content(), load_contact_links(), new_contact(), notifier_run(), perm_is_allowed(), ping_init(), poco_init(), settings_aside(), and zot_refresh().
@@ -2306,7 +2324,7 @@ Variables
- const DB_UPDATE_VERSION 1059 |
+ const DB_UPDATE_VERSION 1064 |
@@ -2420,7 +2438,7 @@ Variables
-
Referenced by admin_page_dbsync(), admin_page_site_post(), admin_page_users(), allfriends_content(), api_content(), api_post(), apps_content(), attach_init(), authenticate_success(), channel_content(), channel_init(), chanview_content(), check_account_email(), check_account_invite(), check_form_security_std_err_msg(), check_keys(), check_php(), common_content(), common_init(), community_content(), connections_content(), connections_post(), crepair_content(), crepair_post(), delegate_content(), directory_content(), dirfind_content(), display_content(), drop_item(), editpost_content(), editwebpage_content(), events_content(), events_post(), follow_init(), format_like(), fsuggest_content(), fsuggest_post(), group_add(), group_content(), group_post(), hcard_init(), import_post(), import_xchan(), intro_content(), intro_post(), invite_content(), invite_post(), item_post(), lastpost_content(), lastpost_init(), like_content(), load_database(), lostpass_content(), lostpass_post(), magic_init(), manage_content(), match_content(), menu_content(), menu_post(), message_content(), message_post(), mitem_content(), mitem_init(), mitem_post(), mood_content(), network_content(), network_init(), new_channel_content(), new_channel_post(), nogroup_content(), notifications_content(), notifications_post(), oexchange_content(), page_content(), photos_content(), photos_post(), poke_content(), post_init(), profile_content(), profile_init(), profile_load(), profile_photo_post(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), register_content(), register_post(), regmod_content(), search_content(), settings_post(), setup_content(), suggest_content(), tagrm_post(), user_allow(), user_deny(), viewconnections_content(), viewsrc_content(), wall_attach_post(), wall_upload_post(), webpages_content(), and xchan_content().
+
Referenced by admin_page_dbsync(), admin_page_site_post(), admin_page_users(), allfriends_content(), api_content(), api_post(), apps_content(), attach_init(), authenticate_success(), channel_content(), channel_init(), chanview_content(), check_account_email(), check_account_invite(), check_form_security_std_err_msg(), check_keys(), check_php(), common_content(), common_init(), community_content(), connect_init(), connections_content(), connections_post(), crepair_content(), crepair_post(), delegate_content(), directory_content(), dirfind_content(), display_content(), drop_item(), editpost_content(), editwebpage_content(), events_content(), events_post(), follow_init(), format_like(), fsuggest_content(), fsuggest_post(), group_add(), group_content(), group_post(), hcard_init(), import_post(), import_xchan(), intro_content(), intro_post(), invite_content(), invite_post(), item_post(), lastpost_content(), lastpost_init(), like_content(), load_database(), lostpass_content(), lostpass_post(), magic_init(), manage_content(), match_content(), menu_content(), menu_post(), message_content(), message_post(), mitem_content(), mitem_init(), mitem_post(), mood_content(), network_content(), network_init(), new_channel_content(), new_channel_post(), nogroup_content(), notifications_content(), notifications_post(), oexchange_content(), page_content(), photos_content(), photos_post(), poke_content(), post_init(), profile_content(), profile_init(), profile_load(), profile_photo_post(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), register_content(), register_post(), regmod_content(), search_content(), settings_post(), setup_content(), suggest_content(), tagrm_post(), user_allow(), user_deny(), viewconnections_content(), viewsrc_content(), wall_attach_post(), wall_upload_post(), webpages_content(), and xchan_content().
@@ -2873,7 +2891,7 @@ Variables
-
Referenced by admin_page_logs(), advanced_profile(), build_sync_packet(), check_form_security_token_ForbiddenOnErr(), check_form_security_token_redirectOnErr(), detect_language(), dfrn_deliver(), directory_content(), fetch_xrd_links(), fix_private_photos(), import_xchan(), item_store(), item_store_update(), lrdd(), mail_store(), message_content(), message_post(), mini_group_select(), network_content(), new_contact(), notifier_run(), parse_xml_string(), photos_post(), poco_load(), post_post(), public_recips(), tag_deliver(), tgroup_check(), webfinger_dfrn(), xml2array(), zot_build_packet(), zot_fetch(), zot_import(), zot_process_response(), zot_refresh(), and zot_register_hub().
+
Referenced by admin_page_logs(), advanced_profile(), build_sync_packet(), check_form_security_token_ForbiddenOnErr(), check_form_security_token_redirectOnErr(), detect_language(), dfrn_deliver(), directory_content(), fetch_xrd_links(), fix_private_photos(), import_xchan(), item_store(), item_store_update(), lrdd(), mail_store(), message_content(), message_post(), mini_group_select(), network_content(), new_contact(), notifier_run(), parse_xml_string(), photos_post(), poco_load(), post_post(), public_recips(), tag_deliver(), tgroup_check(), webfinger_dfrn(), xml2array(), zot_build_packet(), zot_fetch(), zot_import(), zot_process_response(), zot_refresh(), and zot_register_hub().
@@ -3654,6 +3672,20 @@ Variables
Referenced by create_identity().
+
+
+
+
+
+
+
+ const PAGE_PREMIUM 0x0010 |
+
+
+
@@ -3722,7 +3754,7 @@ Variables
@@ -3835,7 +3867,7 @@ Variables
@@ -3877,7 +3909,7 @@ Variables
@@ -3933,7 +3965,7 @@ Variables
diff --git a/doc/html/boot_8php.js b/doc/html/boot_8php.js
index 2a5705c57..9ca39c30f 100644
--- a/doc/html/boot_8php.js
+++ b/doc/html/boot_8php.js
@@ -35,9 +35,9 @@ var boot_8php =
[ "login", "boot_8php.html#aefecf8599036df7f1b95d6820e0e2fa4", null ],
[ "notice", "boot_8php.html#a9255af5ae9c887520091ea04763c1a88", null ],
[ "proc_run", "boot_8php.html#ab346a2ece14993861f3e4206befa94f0", null ],
- [ "profile_create_sidebar", "boot_8php.html#a5b45d647da3743a7fc8c6223350b4d67", null ],
+ [ "profile_create_sidebar", "boot_8php.html#ad4a2c8caca8f6ae93633ebeca0ed6620", null ],
[ "profile_load", "boot_8php.html#a4751b522ea913d0e7ed43e03d22e9e68", null ],
- [ "profile_sidebar", "boot_8php.html#a646123ebbb10eb6f5b6ff26f4288da9b", null ],
+ [ "profile_sidebar", "boot_8php.html#a432259b2cf5b6f59be53e71db9f2c7dc", null ],
[ "profile_tabs", "boot_8php.html#a1dfcb5146e9d1eca4528bc580ad5d273", null ],
[ "remote_user", "boot_8php.html#a5542c5c2806ab8bca04bad53d47b5209", null ],
[ "startup", "boot_8php.html#aca47505b8732177f52bb2d647eb2741c", null ],
@@ -199,6 +199,7 @@ var boot_8php =
[ "PAGE_DIRECTORY_CHANNEL", "boot_8php.html#a5b8484922918946d041e5e0515dbe718", null ],
[ "PAGE_HIDDEN", "boot_8php.html#a5e322a2a2d0f51924c0b2e874988e640", null ],
[ "PAGE_NORMAL", "boot_8php.html#a09532c3f750ae8c4527e63b2b790cbf3", null ],
+ [ "PAGE_PREMIUM", "boot_8php.html#ab3920c2f3cd64802c0b7ff625c3b2ea8", null ],
[ "PAGE_REMOVED", "boot_8php.html#a4edce16cb7f21cdafa1e85bf63d713e6", null ],
[ "PERMS_A_DELEGATE", "boot_8php.html#a423505ab8dbd8e39d04ae3fe1374102b", null ],
[ "PERMS_CONTACTS", "boot_8php.html#ab2d0e8a9b81ee548ef2ce8e4560da2f6", null ],
diff --git a/doc/html/crypto_8php.html b/doc/html/crypto_8php.html
index 795c4c937..25c416ed9 100644
--- a/doc/html/crypto_8php.html
+++ b/doc/html/crypto_8php.html
@@ -252,7 +252,7 @@ Functions
-
Referenced by editpost_content(), encode_item(), encode_mail(), message_post(), new_contact(), post_post(), prepare_body(), private_messages_fetch_conversation(), private_messages_fetch_message(), private_messages_list(), probe_content(), zot_import(), and zot_refresh().
+
Referenced by editpost_content(), encode_item(), encode_mail(), message_post(), new_contact(), post_post(), prepare_body(), private_messages_fetch_conversation(), private_messages_fetch_message(), private_messages_list(), probe_content(), zot_import(), and zot_refresh().
diff --git a/doc/html/datetime_8php.html b/doc/html/datetime_8php.html
index 0ad53d55e..e937b29a4 100644
--- a/doc/html/datetime_8php.html
+++ b/doc/html/datetime_8php.html
@@ -332,7 +332,7 @@ Functions
-
Referenced by add_fcontact(), advanced_profile(), age(), api_account_rate_limit_status(), api_date(), api_rss_extra(), atom_entry(), attach_store(), authenticate_success(), build_sync_packet(), cal(), channel_content(), Cache\clear(), consume_feed(), conversation(), create_account(), create_identity(), crepair_post(), cronhooks_run(), delete_item_lowlevel(), deliver_run(), dirsearch_content(), dlogger(), dob(), ev_compare(), event_store(), events_content(), events_post(), first_post_date(), format_event_diaspora(), format_event_html(), fsuggest_post(), get_atom_elements(), get_birthdays(), get_events(), get_feed_for(), get_first_dim(), get_item_elements(), get_mail_elements(), get_profile_elements(), get_public_feed(), Item\get_template_data(), import_directory_profile(), import_site(), invite_post(), item_post(), item_store(), item_store_update(), items_fetch(), lastpost_content(), like_content(), logger(), FKOAuth1\loginUser(), magic_init(), mail_store(), message_content(), network_content(), new_contact(), notification(), notifier_run(), onepoll_run(), photo_upload(), photos_post(), ping_init(), poco_load(), poller_run(), posted_dates(), profile_photo_post(), profiles_content(), profiles_post(), dba_mysql\q(), dba_mysqli\q(), queue_run(), relative_date(), photo_driver\save(), send_message(), send_reg_approval_email(), Cache\set(), settings_post(), photo_driver\store(), update_modtime(), update_queue_time(), z_birthday(), zot_feed(), zot_process_response(), zot_refresh(), and zotfeed_init().
+
Referenced by add_fcontact(), advanced_profile(), age(), api_account_rate_limit_status(), api_date(), api_rss_extra(), atom_entry(), attach_store(), authenticate_success(), build_sync_packet(), cal(), channel_content(), Cache\clear(), consume_feed(), conversation(), create_account(), create_identity(), crepair_post(), cronhooks_run(), delete_item_lowlevel(), deliver_run(), dirsearch_content(), dlogger(), dob(), ev_compare(), event_store(), events_content(), events_post(), first_post_date(), format_event_diaspora(), format_event_html(), fsuggest_post(), get_atom_elements(), get_birthdays(), get_events(), get_feed_for(), get_first_dim(), get_item_elements(), get_mail_elements(), get_profile_elements(), get_public_feed(), Item\get_template_data(), import_directory_profile(), import_post(), import_site(), invite_post(), item_post(), item_store(), item_store_update(), items_fetch(), lastpost_content(), like_content(), logger(), FKOAuth1\loginUser(), magic_init(), mail_store(), message_content(), network_content(), new_contact(), notification(), notifier_run(), onepoll_run(), photo_upload(), photos_post(), ping_init(), poco_load(), poller_run(), posted_dates(), profile_photo_post(), profiles_content(), profiles_post(), dba_mysql\q(), dba_mysqli\q(), queue_run(), relative_date(), photo_driver\save(), send_message(), send_reg_approval_email(), Cache\set(), settings_post(), photo_driver\store(), update_modtime(), update_queue_time(), z_birthday(), zot_feed(), zot_process_response(), zot_refresh(), and zotfeed_init().
diff --git a/doc/html/dba__driver_8php.html b/doc/html/dba__driver_8php.html
index f00f839aa..65d7f4a07 100644
--- a/doc/html/dba__driver_8php.html
+++ b/doc/html/dba__driver_8php.html
@@ -202,7 +202,7 @@ Functions
-
Referenced by account_verify_password(), acl_init(), add_fcontact(), advanced_profile(), allowed_public_recips(), api_direct_messages_new(), api_get_user(), api_status_show(), api_statuses_mentions(), api_user(), api_users_show(), attach_by_hash(), attach_by_hash_nodata(), attach_count_files(), attach_list_files(), attach_store(), authenticate_success(), build_sync_packet(), call_hooks(), change_channel(), channel_content(), channelx_by_hash(), channelx_by_n(), channelx_by_nick(), chanview_content(), check_account_email(), check_account_invite(), check_webbie(), Cache\clear(), common_friends(), connections_content(), connections_post(), consume_feed(), contact_remove(), contactgroup_content(), count_common_friends(), create_account(), create_identity(), crepair_post(), dbesc_array_cb(), del_config(), del_pconfig(), del_xconfig(), delegate_content(), delete_imported_item(), delete_item_lowlevel(), deliver_run(), dirsearch_content(), display_content(), editpost_content(), editwebpage_content(), event_store(), events_content(), expand_groups(), fbrowser_content(), feed_init(), fetch_post_tags(), file_tag_file_query(), filerm_content(), fix_attached_photo_permissions(), fix_contact_ssl_policy(), fix_private_photos(), fix_system_urls(), fsuggest_post(), generate_user_guid(), Cache\get(), get_all_perms(), get_birthdays(), get_config_from_storage(), get_events(), gprobe_run(), group_add(), group_add_member(), group_byname(), group_content(), group_post(), group_rec_byhash(), group_rmv(), group_rmv_member(), groups_containing(), handle_tag(), import_author_xchan(), import_directory_keywords(), import_directory_profile(), import_post(), import_profile_photo(), import_site(), import_xchan(), install_plugin(), invite_post(), item_message_id(), item_permissions_sql(), item_post(), item_store(), item_store_update(), items_fetch(), lastpost_content(), like_content(), load_config(), load_plugin(), load_xconfig(), lockview_content(), FKOAuth1\loginUser(), FKOAuthDataStore\lookup_consumer(), FKOAuthDataStore\lookup_nonce(), FKOAuthDataStore\lookup_token(), lostpass_content(), lostpass_post(), magic_init(), mail_store(), member_of(), menu_add_item(), menu_create(), menu_delete(), menu_edit(), menu_edit_item(), menu_fetch(), msearch_post(), network_content(), network_init(), FKOAuthDataStore\new_access_token(), new_contact(), new_cookie(), FKOAuthDataStore\new_request_token(), notification(), notifications_content(), notifier_run(), notify_init(), oauth_get_client(), onepoll_run(), page_content(), perm_is_allowed(), permissions_sql(), photo_init(), photo_new_resource(), photo_upload(), photos_album_exists(), photos_album_get_db_idstr(), photos_album_rename(), photos_content(), photos_list_photos(), photos_post(), ping_init(), poco_init(), poco_load(), poller_run(), post_init(), post_post(), private_messages_drop(), private_messages_fetch_conversation(), private_messages_fetch_message(), private_messages_list(), process_channel_sync_delivery(), process_delivery(), process_mail_delivery(), profile_init(), profile_load(), profile_photo_post(), profiles_init(), profiles_post(), public_permissions_sql(), public_recips(), qsearch_init(), queue_run(), rconnect_url(), red_zrl_callback(), redir_init(), ref_session_destroy(), ref_session_gc(), ref_session_read(), ref_session_write(), register_hook(), register_post(), remove_all_xchan_resources(), remove_community_tag(), remove_queue_item(), rmagic_init(), rmagic_post(), photo_driver\save(), search_ac_init(), search_content(), search_init(), send_message(), send_reg_approval_email(), send_status_notifications(), Cache\set(), set_config(), set_pconfig(), set_xconfig(), settings_post(), siteinfo_init(), photo_driver\store(), store_item_tag(), stringify_array_elms(), subthread_content(), suggest_init(), sync_directories(), syncdirs(), tag_deliver(), tagger_content(), tagrm_post(), term_query(), tgroup_check(), thing_init(), uninstall_plugin(), unregister_hook(), update_modtime(), update_queue_time(), user_allow(), user_deny(), vcard_from_xchan(), wall_attach_post(), wall_upload_post(), webpages_content(), wfinger_init(), xchan_content(), xchan_mail_query(), xchan_query(), xrd_init(), z_readdir(), zfinger_init(), zid_init(), zot_feed(), zot_finger(), zot_get_hubloc(), zot_gethub(), zot_process_response(), zot_refresh(), and zotfeed_init().
+
Referenced by account_verify_password(), acl_init(), add_fcontact(), advanced_profile(), allowed_public_recips(), api_direct_messages_new(), api_get_user(), api_status_show(), api_statuses_mentions(), api_user(), api_users_show(), attach_by_hash(), attach_by_hash_nodata(), attach_count_files(), attach_list_files(), attach_store(), authenticate_success(), build_sync_packet(), call_hooks(), change_channel(), channel_content(), channelx_by_hash(), channelx_by_n(), channelx_by_nick(), chanview_content(), check_account_email(), check_account_invite(), check_webbie(), Cache\clear(), common_friends(), connect_init(), connect_post(), connections_content(), connections_post(), consume_feed(), contact_remove(), contactgroup_content(), count_common_friends(), create_account(), create_identity(), crepair_post(), dbesc_array_cb(), del_config(), del_pconfig(), del_xconfig(), delegate_content(), delete_imported_item(), delete_item_lowlevel(), deliver_run(), dirsearch_content(), display_content(), editpost_content(), editwebpage_content(), event_store(), events_content(), expand_groups(), fbrowser_content(), feed_init(), fetch_post_tags(), file_tag_file_query(), filerm_content(), fix_attached_photo_permissions(), fix_contact_ssl_policy(), fix_private_photos(), fix_system_urls(), fsuggest_post(), generate_user_guid(), Cache\get(), get_all_perms(), get_birthdays(), get_config_from_storage(), get_events(), gprobe_run(), group_add(), group_add_member(), group_byname(), group_content(), group_post(), group_rec_byhash(), group_rmv(), group_rmv_member(), groups_containing(), handle_tag(), import_author_xchan(), import_directory_keywords(), import_directory_profile(), import_post(), import_profile_photo(), import_site(), import_xchan(), install_plugin(), invite_post(), item_message_id(), item_permissions_sql(), item_post(), item_store(), item_store_update(), items_fetch(), lastpost_content(), like_content(), load_config(), load_plugin(), load_xconfig(), lockview_content(), FKOAuth1\loginUser(), FKOAuthDataStore\lookup_consumer(), FKOAuthDataStore\lookup_nonce(), FKOAuthDataStore\lookup_token(), lostpass_content(), lostpass_post(), magic_init(), mail_store(), member_of(), menu_add_item(), menu_create(), menu_delete(), menu_edit(), menu_edit_item(), menu_fetch(), msearch_post(), network_content(), network_init(), FKOAuthDataStore\new_access_token(), new_contact(), new_cookie(), FKOAuthDataStore\new_request_token(), notification(), notifications_content(), notifier_run(), notify_init(), oauth_get_client(), onepoll_run(), page_content(), perm_is_allowed(), permissions_sql(), photo_init(), photo_new_resource(), photo_upload(), photos_album_exists(), photos_album_get_db_idstr(), photos_album_rename(), photos_content(), photos_list_photos(), photos_post(), ping_init(), poco_init(), poco_load(), poller_run(), post_init(), post_post(), private_messages_drop(), private_messages_fetch_conversation(), private_messages_fetch_message(), private_messages_list(), process_channel_sync_delivery(), process_delivery(), process_mail_delivery(), profile_init(), profile_load(), profile_photo_post(), profiles_init(), profiles_post(), public_permissions_sql(), public_recips(), qsearch_init(), queue_run(), rconnect_url(), red_zrl_callback(), redir_init(), ref_session_destroy(), ref_session_gc(), ref_session_read(), ref_session_write(), register_hook(), register_post(), remove_all_xchan_resources(), remove_community_tag(), remove_queue_item(), rmagic_init(), rmagic_post(), photo_driver\save(), search_ac_init(), search_content(), search_init(), send_message(), send_reg_approval_email(), send_status_notifications(), Cache\set(), set_config(), set_pconfig(), set_xconfig(), settings_post(), siteinfo_init(), photo_driver\store(), store_item_tag(), stringify_array_elms(), subthread_content(), suggest_init(), sync_directories(), syncdirs(), tag_deliver(), tagger_content(), tagrm_post(), term_query(), tgroup_check(), thing_init(), uninstall_plugin(), unregister_hook(), update_modtime(), update_queue_time(), user_allow(), user_deny(), vcard_from_xchan(), wall_attach_post(), wall_upload_post(), webpages_content(), wfinger_init(), xchan_content(), xchan_mail_query(), xchan_query(), xrd_init(), z_readdir(), zfinger_init(), zid_init(), zot_feed(), zot_finger(), zot_get_hubloc(), zot_gethub(), zot_process_response(), zot_refresh(), and zotfeed_init().
@@ -320,7 +320,7 @@ Functions
This will happen occasionally trying to store the session data after abnormal program termination
-
Referenced by abook_connections(), abook_self(), abook_toggle_flag(), account_remove(), account_total(), account_verify_password(), acl_init(), add_fcontact(), admin_content(), admin_page_dbsync(), admin_page_summary(), admin_page_users(), admin_page_users_post(), advanced_profile(), all_friends(), allfriends_content(), allowed_public_recips(), api_direct_messages_box(), api_direct_messages_new(), api_favorites(), api_ff_ids(), api_format_items(), api_get_user(), api_status_show(), api_statuses_f(), api_statuses_home_timeline(), api_statuses_mentions(), api_statuses_public_timeline(), api_statuses_repeat(), api_statuses_show(), api_statuses_user_timeline(), api_user(), api_users_show(), attach_by_hash(), attach_by_hash_nodata(), attach_count_files(), attach_list_files(), attach_store(), authenticate_success(), build_sync_packet(), call_hooks(), categories_widget(), change_channel(), channel_content(), channel_remove(), channel_total(), channelx_by_hash(), channelx_by_n(), channelx_by_nick(), chanview_content(), check_account_email(), check_account_invite(), check_config(), check_webbie(), Cache\clear(), collect_recipients(), common_friends(), common_friends_zcid(), common_init(), community_content(), connections_content(), connections_init(), connections_post(), consume_feed(), contact_block(), contact_profile_assign(), contact_remove(), contact_select(), contactgroup_content(), contacts_not_grouped(), count_all_friends(), count_common_friends(), count_common_friends_zcid(), create_account(), create_identity(), crepair_content(), crepair_init(), crepair_post(), current_theme(), del_config(), del_pconfig(), del_xconfig(), delegate_content(), delete_imported_item(), delete_item_lowlevel(), deliver_run(), dfrn_deliver(), directory_content(), directory_run(), dirsearch_content(), display_content(), drop_item(), editpost_content(), editwebpage_content(), encode_item(), event_store(), events_content(), expand_groups(), expire_run(), fbrowser_content(), feed_init(), fetch_post_tags(), fileas_widget(), filer_content(), filerm_content(), first_post_date(), fix_attached_photo_permissions(), fix_contact_ssl_policy(), fix_private_photos(), fix_system_urls(), fsuggest_content(), fsuggest_post(), generate_user_guid(), Cache\get(), get_all_perms(), get_birthdays(), get_config_from_storage(), get_events(), gprobe_run(), group_add(), group_add_member(), group_byname(), group_content(), group_get_members(), group_post(), group_rec_byhash(), group_rmv(), group_rmv_member(), group_select(), group_side(), groups_containing(), handle_tag(), identity_basic_export(), identity_check_service_class(), import_author_xchan(), import_directory_keywords(), import_directory_profile(), import_post(), import_profile_photo(), import_site(), import_xchan(), install_plugin(), intro_content(), intro_post(), invite_post(), item_expire(), item_message_id(), item_post(), item_store(), item_store_update(), items_fetch(), lastpost_content(), like_content(), load_config(), load_contact_links(), load_hooks(), load_pconfig(), load_plugin(), load_translation_table(), load_xconfig(), lockview_content(), FKOAuth1\loginUser(), FKOAuthDataStore\lookup_consumer(), FKOAuthDataStore\lookup_nonce(), FKOAuthDataStore\lookup_token(), lostpass_content(), lostpass_post(), magic_init(), mail_store(), manage_content(), match_content(), member_of(), menu_add_item(), menu_create(), menu_del_item(), menu_delete(), menu_delete_id(), menu_edit(), menu_edit_item(), menu_fetch(), menu_fetch_id(), menu_list(), message_content(), mini_group_select(), mitem_content(), mood_init(), msearch_post(), network_content(), network_init(), FKOAuthDataStore\new_access_token(), new_contact(), new_cookie(), FKOAuthDataStore\new_request_token(), notification(), notifications_content(), notifications_post(), notifier_run(), notify_content(), notify_init(), oauth_get_client(), onepoll_run(), page_content(), pagelist_widget(), perm_is_allowed(), photo_init(), photo_new_resource(), photo_upload(), photos_album_exists(), photos_album_get_db_idstr(), photos_album_rename(), photos_albums_list(), photos_content(), photos_list_photos(), photos_post(), ping_init(), poco_init(), poco_load(), poke_content(), poke_init(), poller_run(), post_activity_item(), post_init(), post_post(), private_messages_drop(), private_messages_fetch_conversation(), private_messages_fetch_message(), private_messages_list(), process_channel_sync_delivery(), process_delivery(), process_mail_delivery(), profile_content(), profile_init(), profile_load(), profile_photo_post(), profile_sidebar(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), public_recips(), qsearch_init(), queue_run(), random_profile(), rconnect_url(), red_zrl_callback(), redir_init(), ref_session_destroy(), ref_session_gc(), ref_session_read(), ref_session_write(), register_content(), register_hook(), register_post(), reload_plugins(), remove_all_xchan_resources(), remove_community_tag(), remove_queue_item(), rmagic_init(), rmagic_post(), photo_driver\save(), saved_searches(), search_ac_init(), search_content(), search_init(), search_saved_searches(), send_message(), send_reg_approval_email(), send_status_notifications(), service_class_allows(), service_class_fetch(), Cache\set(), set_config(), set_default_login_identity(), set_pconfig(), set_xconfig(), settings_aside(), settings_post(), setup_content(), share_init(), siteinfo_content(), siteinfo_init(), sitelist_init(), starred_init(), photo_driver\store(), store_item_tag(), stream_perms_api_uids(), subthread_content(), suggest_init(), suggestion_query(), sync_directories(), syncdirs(), tag_deliver(), tagadelic(), tagger_content(), tagrm_content(), tagrm_post(), tgroup_check(), thing_init(), uninstall_plugin(), unregister_hook(), update_modtime(), update_queue_time(), update_suggestions(), user_allow(), user_deny(), vcard_from_xchan(), viewconnections_content(), viewsrc_content(), wall_attach_post(), wall_upload_post(), webpages_content(), wfinger_init(), xchan_content(), xchan_mail_query(), xchan_query(), xrd_init(), z_readdir(), zfinger_init(), zid_init(), zot_feed(), zot_finger(), zot_get_hubloc(), zot_gethub(), zot_import(), zot_process_response(), zot_refresh(), and zotfeed_init().
+
Referenced by abook_connections(), abook_self(), abook_toggle_flag(), account_remove(), account_total(), account_verify_password(), acl_init(), add_fcontact(), admin_content(), admin_page_dbsync(), admin_page_summary(), admin_page_users(), admin_page_users_post(), advanced_profile(), all_friends(), allfriends_content(), allowed_public_recips(), api_direct_messages_box(), api_direct_messages_new(), api_favorites(), api_ff_ids(), api_format_items(), api_get_user(), api_status_show(), api_statuses_f(), api_statuses_home_timeline(), api_statuses_mentions(), api_statuses_public_timeline(), api_statuses_repeat(), api_statuses_show(), api_statuses_user_timeline(), api_user(), api_users_show(), attach_by_hash(), attach_by_hash_nodata(), attach_count_files(), attach_list_files(), attach_store(), authenticate_success(), build_sync_packet(), call_hooks(), categories_widget(), change_channel(), channel_content(), channel_remove(), channel_total(), channelx_by_hash(), channelx_by_n(), channelx_by_nick(), chanview_content(), check_account_email(), check_account_invite(), check_config(), check_webbie(), Cache\clear(), collect_recipients(), common_friends(), common_friends_zcid(), common_init(), community_content(), connect_init(), connect_post(), connections_content(), connections_init(), connections_post(), consume_feed(), contact_block(), contact_profile_assign(), contact_remove(), contact_select(), contactgroup_content(), contacts_not_grouped(), count_all_friends(), count_common_friends(), count_common_friends_zcid(), create_account(), create_identity(), crepair_content(), crepair_init(), crepair_post(), current_theme(), del_config(), del_pconfig(), del_xconfig(), delegate_content(), delete_imported_item(), delete_item_lowlevel(), deliver_run(), dfrn_deliver(), directory_content(), directory_run(), dirsearch_content(), display_content(), drop_item(), editpost_content(), editwebpage_content(), encode_item(), event_store(), events_content(), expand_groups(), expire_run(), fbrowser_content(), feed_init(), fetch_post_tags(), fileas_widget(), filer_content(), filerm_content(), first_post_date(), fix_attached_photo_permissions(), fix_contact_ssl_policy(), fix_private_photos(), fix_system_urls(), fsuggest_content(), fsuggest_post(), generate_user_guid(), Cache\get(), get_all_perms(), get_birthdays(), get_config_from_storage(), get_events(), gprobe_run(), group_add(), group_add_member(), group_byname(), group_content(), group_get_members(), group_post(), group_rec_byhash(), group_rmv(), group_rmv_member(), group_select(), group_side(), groups_containing(), handle_tag(), identity_basic_export(), identity_check_service_class(), import_author_xchan(), import_directory_keywords(), import_directory_profile(), import_post(), import_profile_photo(), import_site(), import_xchan(), install_plugin(), intro_content(), intro_post(), invite_post(), item_expire(), item_message_id(), item_post(), item_store(), item_store_update(), items_fetch(), lastpost_content(), like_content(), load_config(), load_contact_links(), load_hooks(), load_pconfig(), load_plugin(), load_translation_table(), load_xconfig(), lockview_content(), FKOAuth1\loginUser(), FKOAuthDataStore\lookup_consumer(), FKOAuthDataStore\lookup_nonce(), FKOAuthDataStore\lookup_token(), lostpass_content(), lostpass_post(), magic_init(), mail_store(), manage_content(), match_content(), member_of(), menu_add_item(), menu_create(), menu_del_item(), menu_delete(), menu_delete_id(), menu_edit(), menu_edit_item(), menu_fetch(), menu_fetch_id(), menu_list(), message_content(), mini_group_select(), mitem_content(), mood_init(), msearch_post(), network_content(), network_init(), FKOAuthDataStore\new_access_token(), new_contact(), new_cookie(), FKOAuthDataStore\new_request_token(), notification(), notifications_content(), notifications_post(), notifier_run(), notify_content(), notify_init(), oauth_get_client(), onepoll_run(), page_content(), pagelist_widget(), perm_is_allowed(), photo_init(), photo_new_resource(), photo_upload(), photos_album_exists(), photos_album_get_db_idstr(), photos_album_rename(), photos_albums_list(), photos_content(), photos_list_photos(), photos_post(), ping_init(), poco_init(), poco_load(), poke_content(), poke_init(), poller_run(), post_activity_item(), post_init(), post_post(), private_messages_drop(), private_messages_fetch_conversation(), private_messages_fetch_message(), private_messages_list(), process_channel_sync_delivery(), process_delivery(), process_mail_delivery(), profile_content(), profile_init(), profile_load(), profile_photo_post(), profile_sidebar(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), public_recips(), qsearch_init(), queue_run(), random_profile(), rconnect_url(), red_zrl_callback(), redir_init(), ref_session_destroy(), ref_session_gc(), ref_session_read(), ref_session_write(), register_content(), register_hook(), register_post(), reload_plugins(), remove_all_xchan_resources(), remove_community_tag(), remove_queue_item(), rmagic_init(), rmagic_post(), photo_driver\save(), saved_searches(), search_ac_init(), search_content(), search_init(), search_saved_searches(), send_message(), send_reg_approval_email(), send_status_notifications(), service_class_allows(), service_class_fetch(), Cache\set(), set_config(), set_default_login_identity(), set_pconfig(), set_xconfig(), settings_aside(), settings_post(), setup_content(), share_init(), siteinfo_content(), siteinfo_init(), sitelist_init(), starred_init(), photo_driver\store(), store_item_tag(), stream_perms_api_uids(), subthread_content(), suggest_init(), suggestion_query(), sync_directories(), syncdirs(), tag_deliver(), tagadelic(), tagger_content(), tagrm_content(), tagrm_post(), tgroup_check(), thing_init(), uninstall_plugin(), unregister_hook(), update_modtime(), update_queue_time(), update_suggestions(), user_allow(), user_deny(), vcard_from_xchan(), viewconnections_content(), viewsrc_content(), wall_attach_post(), wall_upload_post(), webpages_content(), wfinger_init(), xchan_content(), xchan_mail_query(), xchan_query(), xrd_init(), z_readdir(), zfinger_init(), zid_init(), zot_feed(), zot_finger(), zot_get_hubloc(), zot_gethub(), zot_import(), zot_process_response(), zot_refresh(), and zotfeed_init().
diff --git a/doc/html/dir_d41ce877eb409a4791b288730010abe2.html b/doc/html/dir_d41ce877eb409a4791b288730010abe2.html
index a4d398156..da9e2070d 100644
--- a/doc/html/dir_d41ce877eb409a4791b288730010abe2.html
+++ b/doc/html/dir_d41ce877eb409a4791b288730010abe2.html
@@ -126,6 +126,8 @@ Files
|
|
+file | connect.php |
+ |
file | connections.php |
|
file | contactgroup.php |
diff --git a/doc/html/dir_d41ce877eb409a4791b288730010abe2.js b/doc/html/dir_d41ce877eb409a4791b288730010abe2.js
index b1fbf1f1a..a06750c26 100644
--- a/doc/html/dir_d41ce877eb409a4791b288730010abe2.js
+++ b/doc/html/dir_d41ce877eb409a4791b288730010abe2.js
@@ -11,6 +11,7 @@ var dir_d41ce877eb409a4791b288730010abe2 =
[ "chanview.php", "chanview_8php.html", "chanview_8php" ],
[ "common.php", "common_8php.html", "common_8php" ],
[ "community.php", "community_8php.html", "community_8php" ],
+ [ "connect.php", "connect_8php.html", "connect_8php" ],
[ "connections.php", "connections_8php.html", "connections_8php" ],
[ "contactgroup.php", "contactgroup_8php.html", "contactgroup_8php" ],
[ "crepair.php", "crepair_8php.html", "crepair_8php" ],
diff --git a/doc/html/extract_8php.html b/doc/html/extract_8php.html
index 0b425b088..7d5ce9435 100644
--- a/doc/html/extract_8php.html
+++ b/doc/html/extract_8php.html
@@ -132,7 +132,7 @@ Variables
-
Referenced by activity_sanitise(), add_fcontact(), api_rss_extra(), array_sanitise(), attach_store(), check_account_admin(), check_account_email(), check_account_invite(), check_account_password(), check_list_permissions(), check_webbie(), connections_content(), construct_page(), contact_block(), contact_select(), conversation(), create_account(), create_identity(), dbesc_array(), directory_content(), event_store(), feature_enabled(), fetch_xrd_links(), find_xchan_in_array(), format_like(), get_all_perms(), get_atom_elements(), get_features(), get_item_elements(), get_mail_elements(), get_mood_verbs(), get_poke_verbs(), get_profile_elements(), Item\get_template_data(), get_terms_oftype(), App\get_widgets(), group_select(), identity_basic_import(), ids_to_querystr(), import_directory_profile(), import_post(), import_site(), import_xchan(), item_getfeedattach(), item_store(), item_store_update(), items_fetch(), like_content(), like_puller(), load_database(), lrdd(), magic_init(), mail_store(), menu_add_item(), menu_create(), menu_edit(), menu_edit_item(), mood_init(), network_content(), new_channel_post(), new_contact(), obj_verbs(), parse_url_content(), perm_is_allowed(), photo_upload(), photos_album_get_db_idstr(), photos_create_item(), photos_post(), ping_init(), po2php_run(), poke_init(), post_activity_item(), post_init(), post_post(), prepare_body(), proc_run(), process_channel_sync_delivery(), process_delivery(), process_mail_delivery(), process_profile_delivery(), profile_activity(), profile_sidebar(), profile_tabs(), profiles_content(), register_post(), remove_community_tag(), photo_driver\save(), send_reg_approval_email(), service_class_allows(), service_class_fetch(), App\set_apps(), settings_post(), sort_by_date(), stringify_array_elms(), subthread_content(), suggest_content(), tagger_content(), tagrm_content(), tagrm_post(), thing_init(), validate_channelname(), wfinger_init(), xchan_mail_query(), xchan_query(), xml2array(), xrd_init(), zfinger_init(), zid(), zid_init(), zot_fetch(), zot_get_hubloc(), zot_gethub(), zot_import(), zot_process_response(), and zot_register_hub().
+
Referenced by activity_sanitise(), add_fcontact(), api_rss_extra(), array_sanitise(), attach_store(), check_account_admin(), check_account_email(), check_account_invite(), check_account_password(), check_list_permissions(), check_webbie(), connect_content(), connections_content(), construct_page(), contact_block(), contact_select(), conversation(), create_account(), create_identity(), dbesc_array(), directory_content(), event_store(), feature_enabled(), fetch_xrd_links(), find_xchan_in_array(), format_like(), get_all_perms(), get_atom_elements(), get_features(), get_item_elements(), get_mail_elements(), get_mood_verbs(), get_poke_verbs(), get_profile_elements(), Item\get_template_data(), get_terms_oftype(), App\get_widgets(), group_select(), identity_basic_import(), ids_to_querystr(), import_directory_profile(), import_post(), import_site(), import_xchan(), item_getfeedattach(), item_store(), item_store_update(), items_fetch(), like_content(), like_puller(), load_database(), lrdd(), magic_init(), mail_store(), menu_add_item(), menu_create(), menu_edit(), menu_edit_item(), message_content(), mood_init(), network_content(), new_channel_post(), new_contact(), obj_verbs(), parse_url_content(), perm_is_allowed(), photo_upload(), photos_album_get_db_idstr(), photos_create_item(), photos_post(), ping_init(), po2php_run(), poke_init(), post_activity_item(), post_init(), post_post(), prepare_body(), proc_run(), process_channel_sync_delivery(), process_delivery(), process_mail_delivery(), process_profile_delivery(), profile_activity(), profile_sidebar(), profile_tabs(), profiles_content(), register_post(), remove_community_tag(), photo_driver\save(), send_reg_approval_email(), service_class_allows(), service_class_fetch(), App\set_apps(), settings_post(), sort_by_date(), stringify_array_elms(), subthread_content(), suggest_content(), tagger_content(), tagrm_content(), tagrm_post(), thing_init(), validate_channelname(), wfinger_init(), xchan_mail_query(), xchan_query(), xml2array(), xrd_init(), zfinger_init(), zid(), zid_init(), zot_fetch(), zot_get_hubloc(), zot_gethub(), zot_import(), zot_process_response(), and zot_register_hub().
@@ -160,7 +160,7 @@ Variables
-
Referenced by Template\_build_nodes(), Template\_replcb_node(), admin_page_themes(), attribute_contains(), base64url_decode(), base64url_encode(), bb_tag_preg_replace(), bb_translate_video(), bbtoevent(), bbtovcal(), chanlink_hash(), chanlink_url(), datetime_convert(), day_translate(), detect_language(), diaspora2bb(), diaspora_ol(), diaspora_ul(), expand_acl(), fetch_url(), file_tag_decode(), file_tag_encode(), file_tag_file_query(), fix_mce_lf(), fix_private_photos(), format_term_for_display(), get_bb_tag_pos(), get_intltext_template(), get_markup_template(), get_tags(), html2bb_video(), info(), is_a_date_arg(), json_decode_plus(), legal_webbie(), linkify(), magic_link(), network_to_name(), normalise_openid(), notice(), notifier_run(), oembed_iframe(), oembed_replacecb(), oexchange_content(), parse_xml_string(), photos_post(), poco_load(), post_url(), prepare_body(), print_template(), printable(), private_messages_fetch_conversation(), private_messages_fetch_message(), private_messages_list(), protect_sprintf(), purify_html(), qp(), random_string(), Template\replace(), replace_macros(), FriendicaSmartyEngine\replace_macros(), Template\replace_macros(), scale_external_images(), search(), App\set_widget(), siteinfo_content(), smilies(), stripdcode_br_cb(), t(), template_escape(), template_unescape(), term_query(), unamp(), undo_post_tagging(), unxmlify(), Template\var_replace(), webfinger(), webfinger_dfrn(), x(), z_fetch_url(), z_post_url(), zfinger_init(), and zid().
+
Referenced by Template\_build_nodes(), Template\_replcb_node(), admin_page_themes(), attribute_contains(), base64url_decode(), base64url_encode(), bb_tag_preg_replace(), bb_translate_video(), bbtoevent(), bbtovcal(), chanlink_hash(), chanlink_url(), datetime_convert(), day_translate(), detect_language(), diaspora2bb(), diaspora_ol(), diaspora_ul(), expand_acl(), fetch_url(), file_tag_decode(), file_tag_encode(), file_tag_file_query(), fix_mce_lf(), fix_private_photos(), format_term_for_display(), get_bb_tag_pos(), get_intltext_template(), get_markup_template(), get_tags(), html2bb_video(), info(), is_a_date_arg(), json_decode_plus(), legal_webbie(), linkify(), magic_link(), message_content(), network_to_name(), normalise_openid(), notice(), notifier_run(), oembed_iframe(), oembed_replacecb(), oexchange_content(), parse_xml_string(), photos_post(), poco_load(), post_url(), prepare_body(), print_template(), printable(), private_messages_fetch_conversation(), private_messages_fetch_message(), private_messages_list(), protect_sprintf(), purify_html(), qp(), random_string(), Template\replace(), replace_macros(), FriendicaSmartyEngine\replace_macros(), Template\replace_macros(), scale_external_images(), search(), App\set_widget(), siteinfo_content(), smilies(), stripdcode_br_cb(), t(), template_escape(), template_unescape(), term_query(), unamp(), undo_post_tagging(), unxmlify(), Template\var_replace(), webfinger(), webfinger_dfrn(), x(), z_fetch_url(), z_post_url(), zfinger_init(), and zid().
diff --git a/doc/html/features_8php.html b/doc/html/features_8php.html
index 11699c8c0..6d9159820 100644
--- a/doc/html/features_8php.html
+++ b/doc/html/features_8php.html
@@ -142,7 +142,7 @@ Functions
-
Referenced by categories_widget(), channel_aside(), connections_content(), conversation(), editpost_content(), editwebpage_content(), Item\get_comment_box(), Item\get_template_data(), item_post(), lastpost_aside(), message_content(), message_post(), nav(), network_content(), photos_content(), posted_date_widget(), profile_sidebar(), profile_tabs(), profiles_content(), redbasic_form(), saved_searches(), search_saved_searches(), theme_content(), and thing_content().
+
Referenced by categories_widget(), channel_aside(), connections_content(), conversation(), editpost_content(), editwebpage_content(), Item\get_comment_box(), Item\get_template_data(), item_post(), lastpost_aside(), message_content(), message_post(), nav(), network_content(), photos_content(), posted_date_widget(), profile_sidebar(), profile_tabs(), profiles_content(), redbasic_form(), saved_searches(), search_saved_searches(), settings_aside(), theme_content(), and thing_content().
diff --git a/doc/html/files.html b/doc/html/files.html
index ce48497ec..c5c58f247 100644
--- a/doc/html/files.html
+++ b/doc/html/files.html
@@ -196,109 +196,110 @@ $(document).ready(function(){initNavTree('files.html','');});
  chanview.php | |
  common.php | |
  community.php | |
-  connections.php | |
-  contactgroup.php | |
-  crepair.php | |
-  delegate.php | |
-  directory.php | |
-  dirfind.php | |
-  dirsearch.php | |
-  display.php | |
-  editpost.php | |
-  editwebpage.php | |
-  events.php | |
-  fbrowser.php | |
-  feed.php | |
-  filer.php | |
-  filerm.php | |
-  follow.php | |
-  fsuggest.php | |
-  group.php | |
-  hcard.php | |
-  help.php | |
-  home.php | |
-  hostxrd.php | |
-  import.php | |
-  intro.php | |
-  invite.php | |
-  item.php | |
-  lastpost.php | |
-  like.php | |
-  lockview.php | |
-  login.php | |
-  lostpass.php | |
-  magic.php | |
-  manage.php | |
-  match.php | |
-  menu.php | |
-  message.php | |
-  mitem.php | |
-  mood.php | |
-  msearch.php | |
-  network.php | |
-  new_channel.php | |
-  nogroup.php | |
-  notifications.php | |
-  notify.php | |
-  oembed.php | |
-  oexchange.php | |
-  opensearch.php | |
-  page.php | |
-  parse_url.php | |
-  photo.php | |
-  photos.php | |
-  php.php | |
-  ping.php | |
-  poco.php | |
-  poke.php | |
-  post.php | |
-  pretheme.php | |
-  probe.php | |
-  profile.php | |
-  profile_photo.php | |
-  profiles.php | |
-  profperm.php | |
-  qsearch.php | |
-  randprof.php | |
-  redir.php | |
-  register.php | |
-  regmod.php | |
-  removeme.php | |
-  rmagic.php | |
-  rsd_xml.php | |
-  search.php | |
-  search_ac.php | |
-  settings.php | |
-  setup.php | |
-  share.php | |
-  siteinfo.php | |
-  sitelist.php | |
-  smilies.php | |
-  starred.php | |
-  subthread.php | |
-  suggest.php | |
-  tagger.php | |
-  tagrm.php | |
-  thing.php | |
-  toggle_mobile.php | |
-  uexport.php | |
-  update_channel.php | |
-  update_community.php | |
-  update_display.php | |
-  update_network.php | |
-  update_search.php | |
-  view.php | |
-  viewconnections.php | |
-  viewsrc.php | |
-  wall_attach.php | |
-  wall_upload.php | |
-  webfinger.php | |
-  webpages.php | |
-  wfinger.php | |
-  xchan.php | |
-  xrd.php | |
-  zfinger.php | |
-  zotfeed.php | |
+  connect.php | |
+  connections.php | |
+  contactgroup.php | |
+  crepair.php | |
+  delegate.php | |
+  directory.php | |
+  dirfind.php | |
+  dirsearch.php | |
+  display.php | |
+  editpost.php | |
+  editwebpage.php | |
+  events.php | |
+  fbrowser.php | |
+  feed.php | |
+  filer.php | |
+  filerm.php | |
+  follow.php | |
+  fsuggest.php | |
+  group.php | |
+  hcard.php | |
+  help.php | |
+  home.php | |
+  hostxrd.php | |
+  import.php | |
+  intro.php | |
+  invite.php | |
+  item.php | |
+  lastpost.php | |
+  like.php | |
+  lockview.php | |
+  login.php | |
+  lostpass.php | |
+  magic.php | |
+  manage.php | |
+  match.php | |
+  menu.php | |
+  message.php | |
+  mitem.php | |
+  mood.php | |
+  msearch.php | |
+  network.php | |
+  new_channel.php | |
+  nogroup.php | |
+  notifications.php | |
+  notify.php | |
+  oembed.php | |
+  oexchange.php | |
+  opensearch.php | |
+  page.php | |
+  parse_url.php | |
+  photo.php | |
+  photos.php | |
+  php.php | |
+  ping.php | |
+  poco.php | |
+  poke.php | |
+  post.php | |
+  pretheme.php | |
+  probe.php | |
+  profile.php | |
+  profile_photo.php | |
+  profiles.php | |
+  profperm.php | |
+  qsearch.php | |
+  randprof.php | |
+  redir.php | |
+  register.php | |
+  regmod.php | |
+  removeme.php | |
+  rmagic.php | |
+  rsd_xml.php | |
+  search.php | |
+  search_ac.php | |
+  settings.php | |
+  setup.php | |
+  share.php | |
+  siteinfo.php | |
+  sitelist.php | |
+  smilies.php | |
+  starred.php | |
+  subthread.php | |
+  suggest.php | |
+  tagger.php | |
+  tagrm.php | |
+  thing.php | |
+  toggle_mobile.php | |
+  uexport.php | |
+  update_channel.php | |
+  update_community.php | |
+  update_display.php | |
+  update_network.php | |
+  update_search.php | |
+  view.php | |
+  viewconnections.php | |
+  viewsrc.php | |
+  wall_attach.php | |
+  wall_upload.php | |
+  webfinger.php | |
+  webpages.php | |
+  wfinger.php | |
+  xchan.php | |
+  xrd.php | |
+  zfinger.php | |
+  zotfeed.php | |
 util | |
  fpostit | |
   fpostit.php | |
diff --git a/doc/html/globals_0x63.html b/doc/html/globals_0x63.html
index d52fcc6d0..016b26fa8 100644
--- a/doc/html/globals_0x63.html
+++ b/doc/html/globals_0x63.html
@@ -306,6 +306,15 @@ $(document).ready(function(){initNavTree('globals_0x63.html','');});
completeurl()
: parse_url.php
+connect_content()
+: connect.php
+
+connect_init()
+: connect.php
+
+connect_post()
+: connect.php
+
connections_aside()
: connections.php
diff --git a/doc/html/globals_0x6e.html b/doc/html/globals_0x6e.html
index ec7c86eaa..e4ff51d56 100644
--- a/doc/html/globals_0x6e.html
+++ b/doc/html/globals_0x6e.html
@@ -265,7 +265,7 @@ $(document).ready(function(){initNavTree('globals_0x6e.html','');});
: new_channel.php
new_contact()
-: follow.php
+: follow.php
new_cookie()
: session.php
diff --git a/doc/html/globals_0x70.html b/doc/html/globals_0x70.html
index 97d26ea3e..0c07fb2cf 100644
--- a/doc/html/globals_0x70.html
+++ b/doc/html/globals_0x70.html
@@ -170,6 +170,9 @@ $(document).ready(function(){initNavTree('globals_0x70.html','');});
PAGE_NORMAL
: boot.php
+PAGE_PREMIUM
+: boot.php
+
PAGE_REMOVED
: boot.php
@@ -432,7 +435,7 @@ $(document).ready(function(){initNavTree('globals_0x70.html','');});
: profile.php
profile_create_sidebar()
-: boot.php
+: boot.php
profile_init()
: profile.php
@@ -450,7 +453,7 @@ $(document).ready(function(){initNavTree('globals_0x70.html','');});
: profile_photo.php
profile_sidebar()
-: boot.php
+: boot.php
profile_tabs()
: boot.php
diff --git a/doc/html/globals_0x73.html b/doc/html/globals_0x73.html
index d2eab4bd5..3b97b548f 100644
--- a/doc/html/globals_0x73.html
+++ b/doc/html/globals_0x73.html
@@ -231,6 +231,9 @@ $(document).ready(function(){initNavTree('globals_0x73.html','');});
showForm()
: fpostit.php
+site_default_perms()
+: permissions.php
+
siteinfo_content()
: siteinfo.php
diff --git a/doc/html/globals_func_0x63.html b/doc/html/globals_func_0x63.html
index 03e6e7dad..a963fc5ef 100644
--- a/doc/html/globals_func_0x63.html
+++ b/doc/html/globals_func_0x63.html
@@ -296,6 +296,15 @@ $(document).ready(function(){initNavTree('globals_func_0x63.html','');});
completeurl()
: parse_url.php
+connect_content()
+: connect.php
+
+connect_init()
+: connect.php
+
+connect_post()
+: connect.php
+
connections_aside()
: connections.php
diff --git a/doc/html/globals_func_0x6e.html b/doc/html/globals_func_0x6e.html
index 7b18010ec..10a7c856b 100644
--- a/doc/html/globals_func_0x6e.html
+++ b/doc/html/globals_func_0x6e.html
@@ -177,7 +177,7 @@ $(document).ready(function(){initNavTree('globals_func_0x6e.html','');});
: new_channel.php
new_contact()
-: follow.php
+: follow.php
new_cookie()
: session.php
diff --git a/doc/html/globals_func_0x70.html b/doc/html/globals_func_0x70.html
index dd4b4cb9e..8dbccb4e8 100644
--- a/doc/html/globals_func_0x70.html
+++ b/doc/html/globals_func_0x70.html
@@ -330,7 +330,7 @@ $(document).ready(function(){initNavTree('globals_func_0x70.html','');});
: profile.php
profile_create_sidebar()
-: boot.php
+: boot.php
profile_init()
: profile.php
@@ -348,7 +348,7 @@ $(document).ready(function(){initNavTree('globals_func_0x70.html','');});
: profile_photo.php
profile_sidebar()
-: boot.php
+: boot.php
profile_tabs()
: boot.php
diff --git a/doc/html/globals_func_0x73.html b/doc/html/globals_func_0x73.html
index 124dd85d5..2b6e1a481 100644
--- a/doc/html/globals_func_0x73.html
+++ b/doc/html/globals_func_0x73.html
@@ -230,6 +230,9 @@ $(document).ready(function(){initNavTree('globals_func_0x73.html','');});
showForm()
: fpostit.php
+site_default_perms()
+: permissions.php
+
siteinfo_content()
: siteinfo.php
diff --git a/doc/html/globals_vars_0x70.html b/doc/html/globals_vars_0x70.html
index cd83fa987..7f84f42d6 100644
--- a/doc/html/globals_vars_0x70.html
+++ b/doc/html/globals_vars_0x70.html
@@ -159,6 +159,9 @@ $(document).ready(function(){initNavTree('globals_vars_0x70.html','');});
PAGE_NORMAL
: boot.php
+PAGE_PREMIUM
+: boot.php
+
PAGE_REMOVED
: boot.php
diff --git a/doc/html/include_2attach_8php.html b/doc/html/include_2attach_8php.html
index 886ea944b..31955e83b 100644
--- a/doc/html/include_2attach_8php.html
+++ b/doc/html/include_2attach_8php.html
@@ -180,7 +180,7 @@ Functions
@@ -326,7 +326,7 @@ Functions
diff --git a/doc/html/include_2config_8php.html b/doc/html/include_2config_8php.html
index 00d8dd5a9..a85836821 100644
--- a/doc/html/include_2config_8php.html
+++ b/doc/html/include_2config_8php.html
@@ -256,7 +256,7 @@ Functions
-
Referenced by admin_page_dbsync(), admin_page_logs(), admin_page_site(), admin_page_summary(), admin_page_themes(), allowed_email(), allowed_url(), api_statuses_mentions(), api_statusnet_config(), attach_store(), build_sync_packet(), channel_content(), check_account_admin(), check_account_invite(), check_config(), cli_startup(), community_content(), create_account(), create_identity(), detect_language(), dfrn_deliver(), directory_content(), directory_run(), dirfind_content(), dirsearch_content(), display_content(), dlogger(), dob(), editpost_content(), encode_item(), encode_mail(), events_content(), expire_run(), feed_init(), fetch_url(), fetch_xrd_links(), findpeople_widget(), Item\get_comment_box(), get_item_elements(), get_mail_elements(), group_content(), hcard_init(), hostxrd_init(), photo_gd\imageString(), import_post(), import_xchan(), invite_content(), invite_post(), item_post(), item_store(), lastpost_content(), photo_imagick\load(), logger(), login(), lostpass_content(), lostpass_post(), match_content(), nav(), navbar_complete(), FKOAuthDataStore\new_access_token(), new_channel_post(), new_keypair(), notification(), notifier_run(), oembed_bbcode2html(), parse_url_content(), photo_upload(), photos_content(), photos_init(), poco_init(), poller_run(), post_post(), post_url(), prepare_body(), private_messages_fetch_conversation(), private_messages_fetch_message(), private_messages_list(), proc_run(), profile_content(), profile_create_sidebar(), profile_photo_post(), profiles_content(), profperm_content(), qsearch_init(), register_content(), register_post(), reload_plugins(), scale_external_images(), search_content(), send_message(), send_reg_approval_email(), send_verification_email(), service_class_allows(), service_class_fetch(), set_config(), settings_post(), siteinfo_content(), smilies(), update_suggestions(), upgrade_link(), user_allow(), valid_email(), validate_email(), viewconnections_aside(), viewconnections_content(), viewconnections_init(), z_fetch_url(), z_post_url(), zfinger_init(), zot_fetch(), zot_import(), and zotfeed_init().
+
Referenced by admin_page_dbsync(), admin_page_logs(), admin_page_site(), admin_page_summary(), admin_page_themes(), allowed_email(), allowed_url(), api_statuses_mentions(), api_statusnet_config(), attach_store(), build_sync_packet(), channel_content(), check_account_admin(), check_account_invite(), check_config(), cli_startup(), community_content(), create_account(), create_identity(), detect_language(), dfrn_deliver(), directory_content(), directory_run(), dirfind_content(), dirsearch_content(), display_content(), dlogger(), dob(), editpost_content(), encode_item(), encode_mail(), events_content(), expire_run(), feed_init(), fetch_url(), fetch_xrd_links(), findpeople_widget(), Item\get_comment_box(), get_item_elements(), get_mail_elements(), group_content(), hcard_init(), hostxrd_init(), photo_gd\imageString(), import_post(), import_xchan(), invite_content(), invite_post(), item_post(), item_store(), lastpost_content(), photo_imagick\load(), logger(), login(), lostpass_content(), lostpass_post(), match_content(), nav(), navbar_complete(), FKOAuthDataStore\new_access_token(), new_channel_post(), new_keypair(), notification(), notifier_run(), oembed_bbcode2html(), parse_url_content(), photo_upload(), photos_content(), photos_init(), poco_init(), poller_run(), post_post(), post_url(), prepare_body(), private_messages_fetch_conversation(), private_messages_fetch_message(), private_messages_list(), proc_run(), profile_content(), profile_create_sidebar(), profile_photo_post(), profiles_content(), profperm_content(), qsearch_init(), register_content(), register_post(), reload_plugins(), scale_external_images(), search_content(), send_message(), send_reg_approval_email(), send_verification_email(), service_class_allows(), service_class_fetch(), set_config(), settings_post(), site_default_perms(), siteinfo_content(), smilies(), update_suggestions(), upgrade_link(), user_allow(), valid_email(), validate_email(), viewconnections_aside(), viewconnections_content(), viewconnections_init(), z_fetch_url(), z_post_url(), zfinger_init(), zot_fetch(), zot_import(), and zotfeed_init().
@@ -324,7 +324,7 @@ Functions
-
Referenced by authenticate_success(), App\build_pagehead(), change_channel(), channel_aside(), channel_content(), community_content(), contact_block(), contact_remove(), conversation(), current_theme(), feature_enabled(), findpeople_widget(), Item\get_comment_box(), get_theme_uid(), group_content(), intro_content(), invite_content(), invite_post(), item_expire(), item_store(), item_store_update(), items_fetch(), lastpost_aside(), lastpost_content(), FKOAuth1\loginUser(), message_content(), network_content(), network_init(), notifications_content(), profile_activity(), profile_load(), profile_sidebar(), profperm_content(), remove_community_tag(), set_pconfig(), smilies(), tag_deliver(), and theme_content().
+
Referenced by authenticate_success(), App\build_pagehead(), change_channel(), channel_aside(), channel_content(), community_content(), connect_content(), contact_block(), contact_remove(), conversation(), current_theme(), feature_enabled(), findpeople_widget(), Item\get_comment_box(), get_theme_uid(), group_content(), intro_content(), invite_content(), invite_post(), item_expire(), item_store(), item_store_update(), items_fetch(), lastpost_aside(), lastpost_content(), FKOAuth1\loginUser(), message_content(), network_content(), network_init(), notifications_content(), profile_activity(), profile_load(), profile_sidebar(), profperm_content(), remove_community_tag(), set_pconfig(), smilies(), tag_deliver(), and theme_content().
@@ -508,7 +508,7 @@ Functions
-
Referenced by invite_post(), network_content(), process_channel_sync_delivery(), register_post(), settings_post(), and theme_post().
+
Referenced by connect_post(), invite_post(), network_content(), process_channel_sync_delivery(), register_post(), settings_post(), and theme_post().
diff --git a/doc/html/include_2follow_8php.html b/doc/html/include_2follow_8php.html
index ed557fda9..8b42bcb0a 100644
--- a/doc/html/include_2follow_8php.html
+++ b/doc/html/include_2follow_8php.html
@@ -112,11 +112,11 @@ $(document).ready(function(){initNavTree('include_2follow_8php.html','');});
|
- | new_contact ($uid, $url, $channel, $interactive=false) |
- |
+ | new_contact ($uid, $url, $channel, $interactive=false, $confirm=false) |
+ |
-
+
@@ -142,7 +142,13 @@ Functions
|
|
|
- $interactive = false |
+ $interactive = false , |
+
+
+ |
+ |
+ |
+ $confirm = false |
|
diff --git a/doc/html/include_2follow_8php.js b/doc/html/include_2follow_8php.js
index a44d66d5b..7d72af074 100644
--- a/doc/html/include_2follow_8php.js
+++ b/doc/html/include_2follow_8php.js
@@ -1,4 +1,4 @@
var include_2follow_8php =
[
- [ "new_contact", "include_2follow_8php.html#a6553a7650fae55f95660510d90983144", null ]
+ [ "new_contact", "include_2follow_8php.html#ae387d4ae097c23d69f3247e7f08140c7", null ]
];
\ No newline at end of file
diff --git a/doc/html/include_2group_8php.html b/doc/html/include_2group_8php.html
index a14ed0d39..aa452e406 100644
--- a/doc/html/include_2group_8php.html
+++ b/doc/html/include_2group_8php.html
@@ -226,7 +226,7 @@ Functions
@@ -300,7 +300,7 @@ Functions
diff --git a/doc/html/include_2menu_8php.html b/doc/html/include_2menu_8php.html
index d9229d2de..ff4e76c14 100644
--- a/doc/html/include_2menu_8php.html
+++ b/doc/html/include_2menu_8php.html
@@ -358,7 +358,7 @@ Functions
@@ -422,7 +422,7 @@ Functions
diff --git a/doc/html/include_2network_8php.html b/doc/html/include_2network_8php.html
index 985eb92a5..4a505fa69 100644
--- a/doc/html/include_2network_8php.html
+++ b/doc/html/include_2network_8php.html
@@ -224,7 +224,7 @@ Functions
diff --git a/doc/html/items_8php.html b/doc/html/items_8php.html
index a78bfc16a..45632a5d3 100644
--- a/doc/html/items_8php.html
+++ b/doc/html/items_8php.html
@@ -236,7 +236,7 @@ Functions
diff --git a/doc/html/language_8php.html b/doc/html/language_8php.html
index 6d9fecb17..661fc4688 100644
--- a/doc/html/language_8php.html
+++ b/doc/html/language_8php.html
@@ -280,7 +280,7 @@ Functions
-
Referenced by admin_content(), admin_page_dbsync(), admin_page_logs(), admin_page_logs_post(), admin_page_plugins(), admin_page_site(), admin_page_site_post(), admin_page_summary(), admin_page_themes(), admin_page_users(), admin_post(), advanced_profile(), allfriends_content(), alt_pager(), api_content(), api_post(), api_statuses_public_timeline(), apps_content(), attach_by_hash(), attach_by_hash_nodata(), attach_count_files(), attach_init(), attach_list_files(), attach_store(), authenticate_success(), bb_ShareAttributes(), bbcode(), categories_widget(), channel_content(), channel_init(), chanview_content(), check_account_email(), check_account_invite(), check_config(), check_form_security_std_err_msg(), check_funcs(), check_htaccess(), check_htconfig(), check_keys(), check_php(), check_smarty3(), common_content(), common_friends_visitor_widget(), common_init(), community_content(), connections_content(), connections_post(), construct_page(), contact_block(), contact_poll_interval(), contact_reputation(), conversation(), create_account(), create_identity(), crepair_content(), crepair_post(), datesel_format(), day_translate(), delegate_content(), directory_content(), dirfind_content(), dirsearch_content(), display_content(), drop_item(), editpost_content(), editwebpage_content(), events_content(), events_post(), fbrowser_content(), fileas_widget(), filer_content(), findpeople_widget(), fix_attached_photo_permissions(), follow_init(), follow_widget(), format_event_diaspora(), format_event_html(), format_like(), format_notification(), fsuggest_content(), fsuggest_post(), gender_selector(), get_birthdays(), Item\get_comment_box(), get_events(), get_features(), get_mood_verbs(), get_perms(), get_plink(), get_poke_verbs(), Item\get_template_data(), group_add(), group_content(), group_post(), group_side(), hcard_init(), help_content(), identity_check_service_class(), import_channel_photo(), import_content(), import_post(), import_xchan(), dba_driver\install(), intro_content(), intro_post(), invite_content(), invite_post(), item_photo_menu(), item_post(), item_post_type(), items_fetch(), lang_selector(), lastpost_content(), lastpost_init(), like_content(), load_database(), localize_item(), lockview_content(), login(), lostpass_content(), lostpass_post(), magic_init(), manage_content(), manual_config(), marital_selector(), match_content(), menu_content(), menu_post(), message_aside(), message_content(), message_post(), mini_group_select(), mitem_content(), mitem_init(), mitem_post(), mood_content(), mood_init(), nav(), network_content(), network_init(), network_to_name(), new_channel_content(), new_channel_post(), new_contact(), nogroup_content(), notification(), notifications_content(), notifications_post(), notify_content(), obj_verbs(), oembed_bbcode2html(), oembed_iframe(), oexchange_content(), page_content(), paginate(), photo_upload(), photos_album_widget(), photos_content(), photos_init(), photos_post(), ping_init(), poke_content(), poke_init(), populate_acl(), post_activity_item(), post_init(), posted_date_widget(), prepare_body(), profile_activity(), profile_content(), profile_init(), profile_load(), profile_photo_post(), profile_sidebar(), profile_tabs(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), redbasic_form(), register_content(), register_post(), regmod_content(), relative_date(), removeme_content(), rmagic_content(), saved_searches(), scale_external_images(), search(), search_content(), search_saved_searches(), select_timezone(), send_message(), send_reg_approval_email(), send_verification_email(), settings_aside(), settings_post(), setup_content(), sexpref_selector(), siteinfo_content(), subthread_content(), suggest_content(), tagblock(), tagger_content(), tagrm_content(), tagrm_post(), thing_content(), thing_init(), timezone_cmp(), update_channel_content(), update_community_content(), update_display_content(), update_network_content(), update_search_content(), upgrade_bool_message(), upgrade_link(), upgrade_message(), user_allow(), user_deny(), validate_channelname(), vcard_from_xchan(), viewconnections_content(), viewsrc_content(), wall_upload_post(), webpages_content(), what_next(), writepages_widget(), xchan_content(), z_readdir(), and zfinger_init().
+
Referenced by admin_content(), admin_page_dbsync(), admin_page_logs(), admin_page_logs_post(), admin_page_plugins(), admin_page_site(), admin_page_site_post(), admin_page_summary(), admin_page_themes(), admin_page_users(), admin_post(), advanced_profile(), allfriends_content(), alt_pager(), api_content(), api_post(), api_statuses_public_timeline(), apps_content(), attach_by_hash(), attach_by_hash_nodata(), attach_count_files(), attach_init(), attach_list_files(), attach_store(), authenticate_success(), bb_ShareAttributes(), bbcode(), categories_widget(), channel_content(), channel_init(), chanview_content(), check_account_email(), check_account_invite(), check_config(), check_form_security_std_err_msg(), check_funcs(), check_htaccess(), check_htconfig(), check_keys(), check_php(), check_smarty3(), common_content(), common_friends_visitor_widget(), common_init(), community_content(), connect_content(), connect_init(), connect_post(), connections_content(), connections_post(), construct_page(), contact_block(), contact_poll_interval(), contact_reputation(), conversation(), create_account(), create_identity(), crepair_content(), crepair_post(), datesel_format(), day_translate(), delegate_content(), directory_content(), dirfind_content(), dirsearch_content(), display_content(), drop_item(), editpost_content(), editwebpage_content(), events_content(), events_post(), fbrowser_content(), fileas_widget(), filer_content(), findpeople_widget(), fix_attached_photo_permissions(), follow_init(), follow_widget(), format_event_diaspora(), format_event_html(), format_like(), format_notification(), fsuggest_content(), fsuggest_post(), gender_selector(), get_birthdays(), Item\get_comment_box(), get_events(), get_features(), get_mood_verbs(), get_perms(), get_plink(), get_poke_verbs(), Item\get_template_data(), group_add(), group_content(), group_post(), group_side(), hcard_init(), help_content(), identity_check_service_class(), import_channel_photo(), import_content(), import_post(), import_xchan(), dba_driver\install(), intro_content(), intro_post(), invite_content(), invite_post(), item_photo_menu(), item_post(), item_post_type(), items_fetch(), lang_selector(), lastpost_content(), lastpost_init(), like_content(), load_database(), localize_item(), lockview_content(), login(), lostpass_content(), lostpass_post(), magic_init(), manage_content(), manual_config(), marital_selector(), match_content(), menu_content(), menu_post(), message_aside(), message_content(), message_post(), mini_group_select(), mitem_content(), mitem_init(), mitem_post(), mood_content(), mood_init(), nav(), network_content(), network_init(), network_to_name(), new_channel_content(), new_channel_post(), new_contact(), nogroup_content(), notification(), notifications_content(), notifications_post(), notify_content(), obj_verbs(), oembed_bbcode2html(), oembed_iframe(), oexchange_content(), page_content(), paginate(), photo_upload(), photos_album_widget(), photos_content(), photos_init(), photos_post(), ping_init(), poke_content(), poke_init(), populate_acl(), post_activity_item(), post_init(), posted_date_widget(), prepare_body(), profile_activity(), profile_content(), profile_init(), profile_load(), profile_photo_post(), profile_sidebar(), profile_tabs(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), redbasic_form(), register_content(), register_post(), regmod_content(), relative_date(), removeme_content(), rmagic_content(), saved_searches(), scale_external_images(), search(), search_content(), search_saved_searches(), select_timezone(), send_message(), send_reg_approval_email(), send_verification_email(), settings_aside(), settings_post(), setup_content(), sexpref_selector(), siteinfo_content(), subthread_content(), suggest_content(), tagblock(), tagger_content(), tagrm_content(), tagrm_post(), thing_content(), thing_init(), timezone_cmp(), update_channel_content(), update_community_content(), update_display_content(), update_network_content(), update_search_content(), upgrade_bool_message(), upgrade_link(), upgrade_message(), user_allow(), user_deny(), validate_channelname(), vcard_from_xchan(), viewconnections_content(), viewsrc_content(), wall_upload_post(), webpages_content(), what_next(), writepages_widget(), xchan_content(), z_readdir(), and zfinger_init().
diff --git a/doc/html/navtree.js b/doc/html/navtree.js
index 1796ca3f0..697310d81 100644
--- a/doc/html/navtree.js
+++ b/doc/html/navtree.js
@@ -36,13 +36,13 @@ var NAVTREE =
var NAVTREEINDEX =
[
"BaseObject_8php.html",
-"boot_8php.html#aa3425e2de85b08f7041656d3a8502cb6",
-"classItem.html#a632185dd25c5caf277067c76230a4320",
-"dir_55dbaf9b7b53c4fc605c9011743a7353.html",
-"include_2api_8php.html#a8969e8d9c683f12ba17dcd4b059e020d",
-"mod_2directory_8php.html",
-"removeme_8php.html",
-"wall__upload_8php.html"
+"boot_8php.html#aa3679df31c8dad1b71816b0322d5baff",
+"classItem.html#a5d29ddecc073151a65a8e2ea2f6e4189",
+"deliver_8php.html#a397afcb9afecf0c1816b0951189dd346",
+"include_2api_8php.html#a6951c690d87775eb37e569c66011988e",
+"mod_2api_8php.html#a02ae0f60e240dc806b860edb7d582117",
+"register_8php.html",
+"viewconnections_8php.html#ab6c4d983e97b3a8a879567ff76507776"
];
var SYNCONMSG = 'click to disable panel synchronisation';
diff --git a/doc/html/navtreeindex0.js b/doc/html/navtreeindex0.js
index 348c4c035..03379b597 100644
--- a/doc/html/navtreeindex0.js
+++ b/doc/html/navtreeindex0.js
@@ -91,7 +91,7 @@ var NAVTREEINDEX0 =
"boot_8php.html#a009e6a0637cb65804ea8094ecc4450b0":[5,0,4,131],
"boot_8php.html#a01353c9abebc3544ea080ac161729632":[5,0,4,42],
"boot_8php.html#a022cea669f9f13ef7c6268b63884c57f":[5,0,4,144],
-"boot_8php.html#a02566ac9d891369a1d3ebb81a15722fc":[5,0,4,231],
+"boot_8php.html#a02566ac9d891369a1d3ebb81a15722fc":[5,0,4,232],
"boot_8php.html#a032bbd6d0321e99e9117332c9ed2b1b8":[5,0,4,60],
"boot_8php.html#a03d19251c245587de7ed959300b87bdf":[5,0,4,160],
"boot_8php.html#a0450389f24c632906fbc24347700a543":[5,0,4,53],
@@ -100,9 +100,9 @@ var NAVTREEINDEX0 =
"boot_8php.html#a09532c3f750ae8c4527e63b2b790cbf3":[5,0,4,198],
"boot_8php.html#a0a98dd0110dc6c8e24cefc8ae74d5562":[5,0,4,73],
"boot_8php.html#a0b73e2548d6f9beb9c93211f488e336a":[5,0,4,164],
-"boot_8php.html#a0c59dde058efebbc66520d136cbd1631":[5,0,4,247],
-"boot_8php.html#a0cc8dc76bd10ac0ec81bac08a46f82fe":[5,0,4,243],
-"boot_8php.html#a0d877df1e20bae765e1708be50f6b503":[5,0,4,246],
+"boot_8php.html#a0c59dde058efebbc66520d136cbd1631":[5,0,4,248],
+"boot_8php.html#a0cc8dc76bd10ac0ec81bac08a46f82fe":[5,0,4,244],
+"boot_8php.html#a0d877df1e20bae765e1708be50f6b503":[5,0,4,247],
"boot_8php.html#a0e4701c9742c3ef88f02ac450a042a84":[5,0,4,25],
"boot_8php.html#a0e57f846e6d47a308feced0f7274f178":[5,0,4,65],
"boot_8php.html#a0e6db7e365f2b041a828b93786f694bc":[5,0,4,15],
@@ -114,72 +114,72 @@ var NAVTREEINDEX0 =
"boot_8php.html#a17b4ea23d9ecf628d9c8f53b7abcb805":[5,0,4,143],
"boot_8php.html#a17cf72338b040891781a4bcbdd9a8595":[5,0,4,139],
"boot_8php.html#a181c111f4b6c14d091dfd3bf0d0a22cd":[5,0,4,163],
-"boot_8php.html#a1af3ed96de14aa0d7891b39cc75b60f2":[5,0,4,250],
-"boot_8php.html#a1c923b99bf77e4203ae94e5684b6ad0f":[5,0,4,251],
+"boot_8php.html#a1af3ed96de14aa0d7891b39cc75b60f2":[5,0,4,251],
+"boot_8php.html#a1c923b99bf77e4203ae94e5684b6ad0f":[5,0,4,252],
"boot_8php.html#a1d6e7f4c08bb68e4a424326a811bdd86":[5,0,4,167],
"boot_8php.html#a1da180f961f49a11573cac4ff6c62c05":[5,0,4,82],
-"boot_8php.html#a1db4f0009c9cb4e107eab0f914a3c8dc":[5,0,4,208],
+"boot_8php.html#a1db4f0009c9cb4e107eab0f914a3c8dc":[5,0,4,209],
"boot_8php.html#a1dfcb5146e9d1eca4528bc580ad5d273":[5,0,4,38],
"boot_8php.html#a1f5906598e90b5ea2b4245f682be4348":[5,0,4,110],
"boot_8php.html#a1fbb93cf030f07391f22cc2948744869":[5,0,4,150],
"boot_8php.html#a20f0eed431d25870b624b8937a07a59f":[5,0,4,183],
-"boot_8php.html#a21cc29e0025943e7c28ff58cb4856ac3":[5,0,4,227],
+"boot_8php.html#a21cc29e0025943e7c28ff58cb4856ac3":[5,0,4,228],
"boot_8php.html#a222395aa223cfbff6166fab0b4e2e1d5":[5,0,4,48],
"boot_8php.html#a24a7a70afedd5d85fe0eadc85afa9f77":[5,0,4,24],
"boot_8php.html#a25476eec71fceda237f7dc1d78b0adb8":[5,0,4,106],
"boot_8php.html#a27299ecfb9e9a99826f17a1c14c6995f":[5,0,4,98],
-"boot_8php.html#a2750985ec445617d7e82ae3098c91e3f":[5,0,4,236],
+"boot_8php.html#a2750985ec445617d7e82ae3098c91e3f":[5,0,4,237],
"boot_8php.html#a285732e7889fa7f333cbe431111e1029":[5,0,4,186],
"boot_8php.html#a29528a2544373cc19a378f350040c6a1":[5,0,4,89],
"boot_8php.html#a2958a2bd5422b85329d7c36c06dbc221":[5,0,4,126],
-"boot_8php.html#a29e921c0c72412cc738e44cca6ca1f62":[5,0,4,206],
+"boot_8php.html#a29e921c0c72412cc738e44cca6ca1f62":[5,0,4,207],
"boot_8php.html#a2af173e4e9836ee7c90757b4793a2be3":[5,0,4,111],
"boot_8php.html#a2c65e925994566a63e6c03c381f1b4a0":[5,0,4,182],
"boot_8php.html#a2c8906f1af94a3559a5b4661067bb79d":[5,0,4,124],
"boot_8php.html#a2e90096fede6acce16abf0da8cb2febe":[5,0,4,74],
"boot_8php.html#a2f8f25b13480c37a5f22511f53da8bab":[5,0,4,79],
-"boot_8php.html#a32df13fec0e43281da5979e1f5579aa8":[5,0,4,213],
+"boot_8php.html#a32df13fec0e43281da5979e1f5579aa8":[5,0,4,214],
"boot_8php.html#a3475ff6c2e575f946ea0ee377e944173":[5,0,4,137],
"boot_8php.html#a34c756469ebed32e2fc987bcde62d382":[5,0,4,50],
"boot_8php.html#a3515ea6bf77495de89b93e9ccd881c49":[5,0,4,117],
"boot_8php.html#a35625dacd2158b9f1f1a8e77f9f081fd":[5,0,4,152],
-"boot_8php.html#a36b31575f992a10b5927b76efba9362e":[5,0,4,253],
+"boot_8php.html#a36b31575f992a10b5927b76efba9362e":[5,0,4,254],
"boot_8php.html#a38f6c7fe33b5434a24b4314567753dfa":[5,0,4,171],
"boot_8php.html#a3ad9cc5d4354be741fa1de12b96e9955":[5,0,4,112],
-"boot_8php.html#a3cd42a70c6b3999590e4fd7a1a9096af":[5,0,4,252],
-"boot_8php.html#a3d6d4fc5fafcc9156811669158541caf":[5,0,4,204],
+"boot_8php.html#a3cd42a70c6b3999590e4fd7a1a9096af":[5,0,4,253],
+"boot_8php.html#a3d6d4fc5fafcc9156811669158541caf":[5,0,4,205],
"boot_8php.html#a3e0930933fb2c0bf8211cc7ab4e1c3b4":[5,0,4,12],
"boot_8php.html#a3e2ea123d29a72012db1241f96280b0e":[5,0,4,66],
"boot_8php.html#a3f40aa5bafff8c4eebdc62e5121daf77":[5,0,4,96],
"boot_8php.html#a400519fa181591cd6fdbb8f25fbcba0a":[5,0,4,58],
"boot_8php.html#a40d885b2cfd736aab4234ae641ca4dfb":[5,0,4,127],
-"boot_8php.html#a423505ab8dbd8e39d04ae3fe1374102b":[5,0,4,200],
+"boot_8php.html#a423505ab8dbd8e39d04ae3fe1374102b":[5,0,4,201],
+"boot_8php.html#a432259b2cf5b6f59be53e71db9f2c7dc":[5,0,4,37],
"boot_8php.html#a43296b1b4398aacbf92a4b2d56bab91e":[5,0,4,181],
"boot_8php.html#a43c6c7d84d880e9500bd4f8f8ecc5731":[5,0,4,95],
"boot_8php.html#a444ce608ce34efb82ee11852f36e825f":[5,0,4,157],
"boot_8php.html#a44ae1542a805ffd7f826fb511db07374":[5,0,4,147],
"boot_8php.html#a44d069c8a1cfcc6d2007c506a17ff28f":[5,0,4,77],
-"boot_8php.html#a45b12aefab9675baffc7a07a09486db8":[5,0,4,244],
+"boot_8php.html#a45b12aefab9675baffc7a07a09486db8":[5,0,4,245],
"boot_8php.html#a4751b522ea913d0e7ed43e03d22e9e68":[5,0,4,36],
"boot_8php.html#a490972c02fdb638c52ec0e012a30bfd2":[5,0,4,19],
"boot_8php.html#a49f2a70b3b43aa904223a8d19e986a47":[5,0,4,169],
"boot_8php.html#a4a12ce5de39789b0361e308d89925a20":[5,0,4,109],
-"boot_8php.html#a4a49b29838ef2c45ab3556b52baec6a4":[5,0,4,221],
+"boot_8php.html#a4a49b29838ef2c45ab3556b52baec6a4":[5,0,4,222],
"boot_8php.html#a4bfe22e163657690dfb6d5b1d04cb47e":[5,0,4,168],
"boot_8php.html#a4c02d88e66852a01bd5a1feecb7c3ce3":[5,0,4,6],
-"boot_8php.html#a4edce16cb7f21cdafa1e85bf63d713e6":[5,0,4,199],
-"boot_8php.html#a4fefd7486d3b888a05cfd3dc9575f115":[5,0,4,217],
+"boot_8php.html#a4edce16cb7f21cdafa1e85bf63d713e6":[5,0,4,200],
+"boot_8php.html#a4fefd7486d3b888a05cfd3dc9575f115":[5,0,4,218],
"boot_8php.html#a505410c7edc5f5bb5fa227b98359793e":[5,0,4,193],
"boot_8php.html#a525ca93ff35d3535d1a2b8ba57876afa":[5,0,4,151],
"boot_8php.html#a52b599cd13e152ebc80d7e4413683195":[5,0,4,49],
"boot_8php.html#a53e4bdb6f225da55115acb9277f75e53":[5,0,4,88],
"boot_8php.html#a5542c5c2806ab8bca04bad53d47b5209":[5,0,4,39],
"boot_8php.html#a56fd673eaa7014150297ce1162502db5":[5,0,4,185],
-"boot_8php.html#a57eee7352714c004d36c26dda74af73e":[5,0,4,216],
+"boot_8php.html#a57eee7352714c004d36c26dda74af73e":[5,0,4,217],
"boot_8php.html#a5ab6181607a090bcdbaa13b15b85aba1":[5,0,4,23],
"boot_8php.html#a5ae728ac966ea1d3525a19e7fec59434":[5,0,4,67],
"boot_8php.html#a5b043b7fdcfd4e8c9c3747574afc6caa":[5,0,4,175],
-"boot_8php.html#a5b45d647da3743a7fc8c6223350b4d67":[5,0,4,35],
"boot_8php.html#a5b815330f3d177ab383af37a6c12e532":[5,0,4,46],
"boot_8php.html#a5b8484922918946d041e5e0515dbe718":[5,0,4,196],
"boot_8php.html#a5c3747e0f505f0d5271dc4c54e3feaf4":[5,0,4,85],
@@ -187,31 +187,30 @@ var NAVTREEINDEX0 =
"boot_8php.html#a5e322a2a2d0f51924c0b2e874988e640":[5,0,4,197],
"boot_8php.html#a623e49c79943f3e7bdb770d021683cf7":[5,0,4,21],
"boot_8php.html#a62c832a95e38b1fa23e6cef39521b7d5":[5,0,4,81],
-"boot_8php.html#a646123ebbb10eb6f5b6ff26f4288da9b":[5,0,4,37],
-"boot_8php.html#a64617d4655804de2a3c86501ab4fdbfd":[5,0,4,240],
+"boot_8php.html#a64617d4655804de2a3c86501ab4fdbfd":[5,0,4,241],
"boot_8php.html#a6626f383c3d2d459f731ab8b4f237d16":[5,0,4,161],
"boot_8php.html#a6788e99021ec8ffb0fa94d651f22a322":[5,0,4,135],
"boot_8php.html#a680fbafc2db023c5b1309e0180e81315":[5,0,4,47],
"boot_8php.html#a68d1d5bc9c7ccb663dc671b48c66df11":[5,0,4,138],
"boot_8php.html#a68eebe493e6f729ffd1aeda7a4b11155":[5,0,4,52],
"boot_8php.html#a6969947145a139ec374ce098224d8e81":[5,0,4,141],
-"boot_8php.html#a69aac276ed82e010dc382b16ab4d59e1":[5,0,4,229],
-"boot_8php.html#a6b14a31a8aa9f3452a13383f413bffa2":[5,0,4,220],
-"boot_8php.html#a6b31dd451bc6c37fe7c9c766ff385aaf":[5,0,4,214],
+"boot_8php.html#a69aac276ed82e010dc382b16ab4d59e1":[5,0,4,230],
+"boot_8php.html#a6b14a31a8aa9f3452a13383f413bffa2":[5,0,4,221],
+"boot_8php.html#a6b31dd451bc6c37fe7c9c766ff385aaf":[5,0,4,215],
"boot_8php.html#a6b9909db6a7ec80ec6fdd40ba74014dd":[5,0,4,107],
"boot_8php.html#a6c5e9e293c8242dcb9bc2c3ea2fee2c9":[5,0,4,99],
-"boot_8php.html#a6df1102664f64b274810db85197c2755":[5,0,4,202],
-"boot_8php.html#a7176c0f9f1c98421b97735d892cf6252":[5,0,4,228],
+"boot_8php.html#a6df1102664f64b274810db85197c2755":[5,0,4,203],
+"boot_8php.html#a7176c0f9f1c98421b97735d892cf6252":[5,0,4,229],
"boot_8php.html#a719c7f3972d5f9268f37a41c76cd4ef6":[5,0,4,30],
"boot_8php.html#a7236b2cdcf59f02a42302e893a99013b":[5,0,4,176],
"boot_8php.html#a749144d8dd9c1366596a0213c277d050":[5,0,4,129],
"boot_8php.html#a74bf27f7564c9a37975e7b37d973dcab":[5,0,4,78],
"boot_8php.html#a75a90b0eadd0df510f7e63210733634d":[5,0,4,2],
-"boot_8php.html#a75fc600186b13c3b25e661afefb5eac8":[5,0,4,248],
+"boot_8php.html#a75fc600186b13c3b25e661afefb5eac8":[5,0,4,249],
"boot_8php.html#a768f00b7d66be0daf7ef4eea2e862006":[5,0,4,4],
"boot_8php.html#a774f0f792ebfec1e774c5a17bb9d5966":[5,0,4,80],
"boot_8php.html#a781916f83fcc8ff1035649afa45f0292":[5,0,4,93],
-"boot_8php.html#a78849a1bf8ce8d9804b4cbb502e8f383":[5,0,4,223],
+"boot_8php.html#a78849a1bf8ce8d9804b4cbb502e8f383":[5,0,4,224],
"boot_8php.html#a7aa57438db03834aaa0b468bdce773a6":[5,0,4,71],
"boot_8php.html#a7af107fab8d62b9a73801713b774ed30":[5,0,4,128],
"boot_8php.html#a7b8f8ad9dbe82711257d23891ef6b133":[5,0,4,156],
@@ -224,30 +223,31 @@ var NAVTREEINDEX0 =
"boot_8php.html#a84057c5bfa1bca5fba8497fe005ee4d8":[5,0,4,59],
"boot_8php.html#a84f48897059bbd4a8738d7ee4cec6688":[5,0,4,63],
"boot_8php.html#a8663f32171568489dbb2a01dd00371f8":[5,0,4,122],
-"boot_8php.html#a882b666adfe21f035a0f8c02806066d6":[5,0,4,239],
-"boot_8php.html#a8892374789fd261eb32a7969d934a14a":[5,0,4,238],
+"boot_8php.html#a882b666adfe21f035a0f8c02806066d6":[5,0,4,240],
+"boot_8php.html#a8892374789fd261eb32a7969d934a14a":[5,0,4,239],
"boot_8php.html#a8905fde0a5b7882bdc083b20d9b34701":[5,0,4,174],
"boot_8php.html#a8a60cc38bb567765fd926fef70205f16":[5,0,4,104],
-"boot_8php.html#a8bb0395933b5e886f086f6a2fb0bfa55":[5,0,4,218],
+"boot_8php.html#a8bb0395933b5e886f086f6a2fb0bfa55":[5,0,4,219],
"boot_8php.html#a8c9dce0ef27b35397e29298eb966f7f7":[5,0,4,125],
"boot_8php.html#a8da836617174eed9fc2ac8054125354b":[5,0,4,119],
-"boot_8php.html#a8df201788c9dd0ca91384e3a14c08bce":[5,0,4,225],
+"boot_8php.html#a8df201788c9dd0ca91384e3a14c08bce":[5,0,4,226],
"boot_8php.html#a9255af5ae9c887520091ea04763c1a88":[5,0,4,33],
"boot_8php.html#a926cad0b3d8b9d9ee5da1898fc063ba3":[5,0,4,11],
"boot_8php.html#a93823d15ae07548a4c49de88d325cd26":[5,0,4,142],
"boot_8php.html#a939de9a99278f4fd7dcd0ee67f243f08":[5,0,4,123],
"boot_8php.html#a949116d9a295b214293006c060ca4848":[5,0,4,121],
-"boot_8php.html#a96ad56755a21e1361dbd7bf93c9e7ff4":[5,0,4,226],
+"boot_8php.html#a96ad56755a21e1361dbd7bf93c9e7ff4":[5,0,4,227],
"boot_8php.html#a97769915c9f14adc4f8ab1ea2cecfd90":[5,0,4,18],
"boot_8php.html#a981d46380f9f23c308bac1f9cb00dc5b":[5,0,4,188],
-"boot_8php.html#a99a4a17cb644e7e6826ea07ecaf09777":[5,0,4,219],
+"boot_8php.html#a99a4a17cb644e7e6826ea07ecaf09777":[5,0,4,220],
"boot_8php.html#a9c80420e5a063a4a87ce4831f086134d":[5,0,4,55],
"boot_8php.html#a9cbab4ee728e9a8b4ce952bae643044e":[5,0,4,5],
-"boot_8php.html#a9cc986b4f9dd6558cbb2e25aadbfd964":[5,0,4,211],
+"boot_8php.html#a9cc986b4f9dd6558cbb2e25aadbfd964":[5,0,4,212],
"boot_8php.html#a9d01ef178b72b145016cca1393415bc4":[5,0,4,189],
-"boot_8php.html#a9eeb8989272d5ff804a616898bb13659":[5,0,4,241],
-"boot_8php.html#a9ff652e5cb83cd11cbb0350844e7b28f":[5,0,4,210],
+"boot_8php.html#a9eeb8989272d5ff804a616898bb13659":[5,0,4,242],
+"boot_8php.html#a9ff652e5cb83cd11cbb0350844e7b28f":[5,0,4,211],
"boot_8php.html#aa17a4f9c63f5cbc5c06f1066b6aebc42":[5,0,4,177],
"boot_8php.html#aa1e828bbbcba170265eb2668d8daf42e":[5,0,4,28],
-"boot_8php.html#aa275653b9c87abc7391bb8040c1c2de9":[5,0,4,195]
+"boot_8php.html#aa275653b9c87abc7391bb8040c1c2de9":[5,0,4,195],
+"boot_8php.html#aa3425e2de85b08f7041656d3a8502cb6":[5,0,4,51]
};
diff --git a/doc/html/navtreeindex1.js b/doc/html/navtreeindex1.js
index cb5ffdb49..8a1396f5d 100644
--- a/doc/html/navtreeindex1.js
+++ b/doc/html/navtreeindex1.js
@@ -1,23 +1,23 @@
var NAVTREEINDEX1 =
{
-"boot_8php.html#aa3425e2de85b08f7041656d3a8502cb6":[5,0,4,51],
"boot_8php.html#aa3679df31c8dad1b71816b0322d5baff":[5,0,4,149],
"boot_8php.html#aa4221641e5c21db69fa52c426b9017f5":[5,0,4,9],
"boot_8php.html#aa46321e1cd6a3b8dfde8bf9510112fec":[5,0,4,20],
"boot_8php.html#aa544a6c078130d0967a1f4ed8ce0a2d2":[5,0,4,146],
"boot_8php.html#aa74438cf71e48e37bf7b440b94243985":[5,0,4,92],
"boot_8php.html#aa8a2b61e70900139d1ca28e46f1da49d":[5,0,4,101],
-"boot_8php.html#aa9244fc9cc221980c07a20cc534111be":[5,0,4,215],
+"boot_8php.html#aa9244fc9cc221980c07a20cc534111be":[5,0,4,216],
"boot_8php.html#aad33b494084f729b6ee3b0bc457718a1":[5,0,4,133],
"boot_8php.html#aaeb666872995e3ab8da8f7bc5f3b2bd3":[5,0,4,22],
"boot_8php.html#aaf9b76832ee5f85e56466af162ba8a14":[5,0,4,72],
"boot_8php.html#ab21fb0f3e6b962419955c6fc7f26734f":[5,0,4,180],
"boot_8php.html#ab28dc518fa90b6f617dd8c564eb4f35f":[5,0,4,114],
-"boot_8php.html#ab2d0e8a9b81ee548ef2ce8e4560da2f6":[5,0,4,201],
+"boot_8php.html#ab2d0e8a9b81ee548ef2ce8e4560da2f6":[5,0,4,202],
"boot_8php.html#ab346a2ece14993861f3e4206befa94f0":[5,0,4,34],
-"boot_8php.html#ab4bc9c50ecc927b92d519e36562b0df0":[5,0,4,222],
+"boot_8php.html#ab3920c2f3cd64802c0b7ff625c3b2ea8":[5,0,4,199],
+"boot_8php.html#ab4bc9c50ecc927b92d519e36562b0df0":[5,0,4,223],
"boot_8php.html#ab4bddb41a0cf407178ec5278b950c393":[5,0,4,173],
-"boot_8php.html#ab51965fabe54dc031e9a0ce1142ee83e":[5,0,4,205],
+"boot_8php.html#ab51965fabe54dc031e9a0ce1142ee83e":[5,0,4,206],
"boot_8php.html#ab54b24cc302e1a42a67a49d788b6b764":[5,0,4,113],
"boot_8php.html#ab55b16ae7fc19fafe5afaedd49163bbf":[5,0,4,134],
"boot_8php.html#ab55e545b72ec8c097e052ea7d373491f":[5,0,4,43],
@@ -27,17 +27,17 @@ var NAVTREEINDEX1 =
"boot_8php.html#ab7d65a7e7417825a4db62906bb600729":[5,0,4,103],
"boot_8php.html#aba208673515cbb8a55e5fa4a1da99fda":[5,0,4,44],
"boot_8php.html#abc0a90a1a77f5b668aa7e4b57d1776a7":[5,0,4,3],
-"boot_8php.html#abd7bb40da9cc073297e49736b338ca07":[5,0,4,245],
+"boot_8php.html#abd7bb40da9cc073297e49736b338ca07":[5,0,4,246],
"boot_8php.html#abdcdfc873ace4e0902177bad934de0c0":[5,0,4,70],
"boot_8php.html#abedd940e664017c61b48c6efa31d0cb8":[5,0,4,102],
"boot_8php.html#ac01230c7655e0705b2e99c9bc03c4450":[5,0,4,120],
"boot_8php.html#ac17fc8a416ea79e9d5cb4dc9a8ff8c5c":[5,0,4,27],
"boot_8php.html#ac195fc9003298923ea81f144388e24b1":[5,0,4,159],
-"boot_8php.html#ac43182e0d8bae7576a30b603774974f8":[5,0,4,224],
+"boot_8php.html#ac43182e0d8bae7576a30b603774974f8":[5,0,4,225],
"boot_8php.html#ac59a18a4838710d6c2de37aed6b21f03":[5,0,4,100],
"boot_8php.html#ac608a34f3bc180e7724192e0fd31f9b0":[5,0,4,41],
"boot_8php.html#ac8400313df2c831653f9036f71ebd86d":[5,0,4,62],
-"boot_8php.html#ac86615ddc0763a00f5311c90e991730c":[5,0,4,249],
+"boot_8php.html#ac86615ddc0763a00f5311c90e991730c":[5,0,4,250],
"boot_8php.html#ac890557fedc5b5a3b1d996249b1e1a20":[5,0,4,116],
"boot_8php.html#ac99fc4d040764eac1736bec6973556fe":[5,0,4,118],
"boot_8php.html#aca08bc4f1554ba877500f6abcc99e1e8":[5,0,4,187],
@@ -45,7 +45,7 @@ var NAVTREEINDEX1 =
"boot_8php.html#aca5e42678e178c6b9034610d66666fd7":[5,0,4,13],
"boot_8php.html#acc4e0c910af066148b810e5fde55fff1":[5,0,4,8],
"boot_8php.html#acca19aae62e1a6951a856b945de20d67":[5,0,4,162],
-"boot_8php.html#acd877c405b06b348b37b6f7e62a211e9":[5,0,4,212],
+"boot_8php.html#acd877c405b06b348b37b6f7e62a211e9":[5,0,4,213],
"boot_8php.html#aced60c7285192e80b7c4757e45a7f1e3":[5,0,4,69],
"boot_8php.html#ad0876e837cf3fad8a26417e315f6e2c8":[5,0,4,145],
"boot_8php.html#ad11f30a6590d3d77f0c5e1e3909af8f5":[5,0,4,153],
@@ -53,44 +53,45 @@ var NAVTREEINDEX1 =
"boot_8php.html#ad2c97627a313d53df1a1c7b4215ddb51":[5,0,4,16],
"boot_8php.html#ad302cb26b838898d475f57f61b0fcc9f":[5,0,4,76],
"boot_8php.html#ad34c1547020a305915bcc39707744690":[5,0,4,91],
+"boot_8php.html#ad4a2c8caca8f6ae93633ebeca0ed6620":[5,0,4,35],
"boot_8php.html#ad4c9dc2c8a82e8f52b7404c1655eab44":[5,0,4,31],
-"boot_8php.html#ad789aef3cb95fc1eb36be7c4283d0137":[5,0,4,207],
-"boot_8php.html#ad8887b49bbb02dd30b4eb9f6c7773c63":[5,0,4,230],
+"boot_8php.html#ad789aef3cb95fc1eb36be7c4283d0137":[5,0,4,208],
+"boot_8php.html#ad8887b49bbb02dd30b4eb9f6c7773c63":[5,0,4,231],
"boot_8php.html#ada72d88ae39a7e3b45baea201cb49a29":[5,0,4,97],
"boot_8php.html#adaeb4f590c56326b2dca3b19f31b6272":[5,0,4,130],
-"boot_8php.html#adca48aee78465ae3064ca4432c0d87b5":[5,0,4,233],
+"boot_8php.html#adca48aee78465ae3064ca4432c0d87b5":[5,0,4,234],
"boot_8php.html#add517a0958ac684792c62142a3877f81":[5,0,4,45],
"boot_8php.html#adfb2fc7be5a4226c0a8e24131da9d498":[5,0,4,26],
-"boot_8php.html#ae37444eaa42705185080ccf3e670cbc2":[5,0,4,237],
+"boot_8php.html#ae37444eaa42705185080ccf3e670cbc2":[5,0,4,238],
"boot_8php.html#ae381db3d43f8e7c1da8b15d14ecf5312":[5,0,4,17],
"boot_8php.html#ae3cef7b63e25e7bafea3fcf6b99fad0e":[5,0,4,170],
"boot_8php.html#ae4861de36017fe399c1839f778bad9f5":[5,0,4,148],
"boot_8php.html#ae94f7c7c0909629a75aed1c41f10bc95":[5,0,4,178],
"boot_8php.html#aea7fc57a4d8e9dcb42f2601b0b9b761c":[5,0,4,29],
-"boot_8php.html#aead84fa27d7516b855220fe004964a45":[5,0,4,242],
-"boot_8php.html#aec36f8fcd4cb14a52934590b3d6666b4":[5,0,4,209],
+"boot_8php.html#aead84fa27d7516b855220fe004964a45":[5,0,4,243],
+"boot_8php.html#aec36f8fcd4cb14a52934590b3d6666b4":[5,0,4,210],
"boot_8php.html#aed0dfb35f7dd00dc9e4f868ea7f7ff53":[5,0,4,154],
"boot_8php.html#aedfb9501ed408278667995524e0d15cf":[5,0,4,105],
"boot_8php.html#aee324eca9de4e0fedf01ab5f92e27c67":[5,0,4,165],
"boot_8php.html#aef4b6c558c68c88c10f13c5a00c20e3d":[5,0,4,179],
"boot_8php.html#aefba06f1c0842036329033e7567ecf6d":[5,0,4,132],
"boot_8php.html#aefecf8599036df7f1b95d6820e0e2fa4":[5,0,4,32],
-"boot_8php.html#af33d1b2e98a1e21af672005525d46dfe":[5,0,4,234],
+"boot_8php.html#af33d1b2e98a1e21af672005525d46dfe":[5,0,4,235],
"boot_8php.html#af3905ea8f8568d0236db13fca40514e3":[5,0,4,172],
"boot_8php.html#af3a4271630aabd8be592213f925d6a36":[5,0,4,64],
"boot_8php.html#af3bdfc20979c16f15bb9c60446a480f9":[5,0,4,57],
"boot_8php.html#af489d0c3166551b93e63a79ff2c9be35":[5,0,4,136],
"boot_8php.html#af6937db5f581d006bf4a5c3d9c7e0461":[5,0,4,192],
"boot_8php.html#af6f6f6f40139f12fc09ec47373b30919":[5,0,4,94],
-"boot_8php.html#af86c651547aa8f9e549ee40a09455549":[5,0,4,232],
+"boot_8php.html#af86c651547aa8f9e549ee40a09455549":[5,0,4,233],
"boot_8php.html#af8c0cb0744c9a6b5d6d3baafb1f1e71d":[5,0,4,184],
"boot_8php.html#afaf93b7026f784b113b4f8921745891e":[5,0,4,166],
-"boot_8php.html#afb97615e985a013799839b68b99018d7":[5,0,4,235],
+"boot_8php.html#afb97615e985a013799839b68b99018d7":[5,0,4,236],
"boot_8php.html#afbb1fe1b2c8c730ec8e08da93b6512c4":[5,0,4,54],
"boot_8php.html#afe084c30a1810c10442edb4fbcbc0086":[5,0,4,86],
"boot_8php.html#afe63ae69ba55299f813766e54df06ede":[5,0,4,140],
"boot_8php.html#afe88b920aa285982edb817a0dd44eb37":[5,0,4,14],
-"boot_8php.html#aff210e8403dd72368522b17fb6e5d4e7":[5,0,4,203],
+"boot_8php.html#aff210e8403dd72368522b17fb6e5d4e7":[5,0,4,204],
"cache_8php.html":[5,0,0,11],
"channel_8php.html":[5,0,1,7],
"channel_8php.html#a9c6a6179e0e626398ebecc6151905ef1":[5,0,1,7,1],
@@ -248,6 +249,5 @@ var NAVTREEINDEX1 =
"classItem.html#a4b92e3a9d6212c553aa2661489bd95d8":[4,0,17,15],
"classItem.html#a5b2fafdca55aefeaa08993a5a60529f0":[4,0,17,19],
"classItem.html#a5b561415861f5b89b0733aacfe0428d1":[4,0,17,36],
-"classItem.html#a5cfa6cf964f433a917a81cab079ff9d8":[4,0,17,39],
-"classItem.html#a5d29ddecc073151a65a8e2ea2f6e4189":[4,0,17,41]
+"classItem.html#a5cfa6cf964f433a917a81cab079ff9d8":[4,0,17,39]
};
diff --git a/doc/html/navtreeindex2.js b/doc/html/navtreeindex2.js
index be5a0d8c8..47d9925ac 100644
--- a/doc/html/navtreeindex2.js
+++ b/doc/html/navtreeindex2.js
@@ -1,5 +1,6 @@
var NAVTREEINDEX2 =
{
+"classItem.html#a5d29ddecc073151a65a8e2ea2f6e4189":[4,0,17,41],
"classItem.html#a632185dd25c5caf277067c76230a4320":[4,0,17,4],
"classItem.html#a67892aa23d19f4431bb2e5f43c74000e":[4,0,17,12],
"classItem.html#a7f7bc059de377319282cb4ef4a828480":[4,0,17,37],
@@ -158,12 +159,16 @@ var NAVTREEINDEX2 =
"community_8php.html":[5,0,1,10],
"community_8php.html#a1197aafd6a6b540dbb4a0c04ade3a25a":[5,0,1,10,0],
"community_8php.html#a56c94ec978a38633c5628fa6f8e386d9":[5,0,1,10,1],
-"connections_8php.html":[5,0,1,11],
-"connections_8php.html#a1224058db8e3fb56463eb312f98e561d":[5,0,1,11,4],
-"connections_8php.html#a15af118efee9c948b6f8294e54a73bb2":[5,0,1,11,1],
-"connections_8php.html#a1f23623f802af7bd35e95b0e94e5d558":[5,0,1,11,3],
-"connections_8php.html#aec2e457420fce3e3bf6a9f48e36df25c":[5,0,1,11,2],
-"connections_8php.html#af48f7ad20914760ba9874c090384e35a":[5,0,1,11,0],
+"connect_8php.html":[5,0,1,11],
+"connect_8php.html#a417ec27afe33f21a929667a665e32ee2":[5,0,1,11,2],
+"connect_8php.html#a489f0a66c660de6ec4d6917b27674f07":[5,0,1,11,0],
+"connect_8php.html#ad46a38f32fd7a3d324b1fa26373efa36":[5,0,1,11,1],
+"connections_8php.html":[5,0,1,12],
+"connections_8php.html#a1224058db8e3fb56463eb312f98e561d":[5,0,1,12,4],
+"connections_8php.html#a15af118efee9c948b6f8294e54a73bb2":[5,0,1,12,1],
+"connections_8php.html#a1f23623f802af7bd35e95b0e94e5d558":[5,0,1,12,3],
+"connections_8php.html#aec2e457420fce3e3bf6a9f48e36df25c":[5,0,1,12,2],
+"connections_8php.html#af48f7ad20914760ba9874c090384e35a":[5,0,1,12,0],
"contact__selectors_8php.html":[5,0,0,16],
"contact__selectors_8php.html#a2c743d2eb526eb758d943a1490162d75":[5,0,0,16,1],
"contact__selectors_8php.html#a9839e8fdaac7ffb37bf1420493f5c28f":[5,0,0,16,0],
@@ -175,8 +180,8 @@ var NAVTREEINDEX2 =
"contact__widgets_8php.html#a552f8544528cec0c995cea7287ea9d65":[5,0,0,17,1],
"contact__widgets_8php.html#a57e73ebcfd62bb5d8c7a7b9e663726d6":[5,0,0,17,3],
"contact__widgets_8php.html#af24e693532a045954caab515942cfc6f":[5,0,0,17,4],
-"contactgroup_8php.html":[5,0,1,12],
-"contactgroup_8php.html#a18c7391b1b25debaf98c9dba639caab3":[5,0,1,12,0],
+"contactgroup_8php.html":[5,0,1,13],
+"contactgroup_8php.html#a18c7391b1b25debaf98c9dba639caab3":[5,0,1,13,0],
"conversation_8php.html":[5,0,0,18],
"conversation_8php.html#a0891aaa4492cba2b51eda12fe01957f3":[5,0,0,18,7],
"conversation_8php.html#a0ee05f15255fb1cc3d89f30bc378a654":[5,0,0,18,9],
@@ -200,10 +205,10 @@ var NAVTREEINDEX2 =
"conversation_8php.html#ae59703b07ce2ddf627b4172ff26058b6":[5,0,0,18,5],
"conversation_8php.html#ae996eb116d397a2c6396c312d7b98664":[5,0,0,18,16],
"conversation_8php.html#afe5b2f38d8b803edb0d7ec5fa2868db0":[5,0,0,18,12],
-"crepair_8php.html":[5,0,1,13],
-"crepair_8php.html#a29464c01838e209c8059cfcd2d195caa":[5,0,1,13,0],
-"crepair_8php.html#ab089978e50df156bbfabf9f8f5ccd198":[5,0,1,13,1],
-"crepair_8php.html#acc4493e1ffd1462a605dd9b870034513":[5,0,1,13,2],
+"crepair_8php.html":[5,0,1,14],
+"crepair_8php.html#a29464c01838e209c8059cfcd2d195caa":[5,0,1,14,0],
+"crepair_8php.html#ab089978e50df156bbfabf9f8f5ccd198":[5,0,1,14,1],
+"crepair_8php.html#acc4493e1ffd1462a605dd9b870034513":[5,0,1,14,2],
"cronhooks_8php.html":[5,0,0,20],
"cronhooks_8php.html#a4c4c1bbec4ecc9a0efa00dd6afd2c0ca":[5,0,0,20,0],
"crypto_8php.html":[5,0,0,21],
@@ -242,12 +247,7 @@ var NAVTREEINDEX2 =
"dba__driver_8php.html#af531546fac5f0836a8557a4f6dfee930":[5,0,0,0,0,4],
"dba__mysql_8php.html":[5,0,0,0,1],
"dba__mysqli_8php.html":[5,0,0,0,2],
-"delegate_8php.html":[5,0,1,14],
-"delegate_8php.html#a943eea8996ef348eb845c498f9f354dd":[5,0,1,14,0],
-"deliver_8php.html":[5,0,0,23],
-"deliver_8php.html#a397afcb9afecf0c1816b0951189dd346":[5,0,0,23,0],
-"dir_032dd9e2cfe278a2cfa5eb9547448eb9.html":[5,0,3,1,0,0],
-"dir_0eaa4a0adae8ba4811e133c6e594aeee.html":[5,0,2,0],
-"dir_21bc5169ff11430004758be31dcfc6c4.html":[5,0,0,0],
-"dir_23ec12649285f9fabf3a6b7380226c28.html":[5,0,2]
+"delegate_8php.html":[5,0,1,15],
+"delegate_8php.html#a943eea8996ef348eb845c498f9f354dd":[5,0,1,15,0],
+"deliver_8php.html":[5,0,0,23]
};
diff --git a/doc/html/navtreeindex3.js b/doc/html/navtreeindex3.js
index c3beaf943..caffe4385 100644
--- a/doc/html/navtreeindex3.js
+++ b/doc/html/navtreeindex3.js
@@ -1,5 +1,10 @@
var NAVTREEINDEX3 =
{
+"deliver_8php.html#a397afcb9afecf0c1816b0951189dd346":[5,0,0,23,0],
+"dir_032dd9e2cfe278a2cfa5eb9547448eb9.html":[5,0,3,1,0,0],
+"dir_0eaa4a0adae8ba4811e133c6e594aeee.html":[5,0,2,0],
+"dir_21bc5169ff11430004758be31dcfc6c4.html":[5,0,0,0],
+"dir_23ec12649285f9fabf3a6b7380226c28.html":[5,0,2],
"dir_55dbaf9b7b53c4fc605c9011743a7353.html":[5,0,3,1,0],
"dir_6b44a0e797e2f12381093380e3e54763.html":[5,0,3,1,1,0],
"dir_817f6d302394b98e59575acdb59998bc.html":[5,0,3,0],
@@ -13,14 +18,14 @@ var NAVTREEINDEX3 =
"dir_d41ce877eb409a4791b288730010abe2.html":[5,0,1],
"dir_d44c64559bbebec7f509842c48db8b23.html":[5,0,0],
"dir_d795dfe8933002397556cc7aa16eca15.html":[5,0,3,1,1],
-"dirfind_8php.html":[5,0,1,16],
-"dirfind_8php.html#ac689a812c84f161b3a0d42349f83981c":[5,0,1,16,1],
-"dirfind_8php.html#af22b0283f928c4c32e62248a5ae67cee":[5,0,1,16,0],
-"dirsearch_8php.html":[5,0,1,17],
-"dirsearch_8php.html#a3e51964ae3f5ff147403407b65324752":[5,0,1,17,1],
-"dirsearch_8php.html#aa1fb04e1de4f25b63349ac78f94ceb4c":[5,0,1,17,0],
-"display_8php.html":[5,0,1,18],
-"display_8php.html#a37137c98d47bf3306f4c2bb9f5b60de0":[5,0,1,18,0],
+"dirfind_8php.html":[5,0,1,17],
+"dirfind_8php.html#ac689a812c84f161b3a0d42349f83981c":[5,0,1,17,1],
+"dirfind_8php.html#af22b0283f928c4c32e62248a5ae67cee":[5,0,1,17,0],
+"dirsearch_8php.html":[5,0,1,18],
+"dirsearch_8php.html#a3e51964ae3f5ff147403407b65324752":[5,0,1,18,1],
+"dirsearch_8php.html#aa1fb04e1de4f25b63349ac78f94ceb4c":[5,0,1,18,0],
+"display_8php.html":[5,0,1,19],
+"display_8php.html#a37137c98d47bf3306f4c2bb9f5b60de0":[5,0,1,19,0],
"docblox__errorchecker_8php.html":[5,0,2,2],
"docblox__errorchecker_8php.html#a1659f0a629d408e0f849dbe4ee061e62":[5,0,2,2,3],
"docblox__errorchecker_8php.html#a21b4bbe5aae2d85db33affc7126a67ec":[5,0,2,2,2],
@@ -33,10 +38,10 @@ var NAVTREEINDEX3 =
"docblox__errorchecker_8php.html#ab66bc0493d25f39bf8b4dcbb429f04e6":[5,0,2,2,4],
"docblox__errorchecker_8php.html#ae9562cf60aa693114603d27b55d2185f":[5,0,2,2,1],
"docblox__errorchecker_8php.html#af4ca738a05beffe9c8c23e1f7aea3c2d":[5,0,2,2,10],
-"editpost_8php.html":[5,0,1,19],
-"editpost_8php.html#a34011690864d122680c802e9e748ccfb":[5,0,1,19,0],
-"editwebpage_8php.html":[5,0,1,20],
-"editwebpage_8php.html#a375e945255fad79a71036528f7480650":[5,0,1,20,0],
+"editpost_8php.html":[5,0,1,20],
+"editpost_8php.html#a34011690864d122680c802e9e748ccfb":[5,0,1,20,0],
+"editwebpage_8php.html":[5,0,1,21],
+"editwebpage_8php.html#a375e945255fad79a71036528f7480650":[5,0,1,21,0],
"enotify_8php.html":[5,0,0,26],
"enotify_8php.html#a3e9a9355b243777c488d2a9883908dfc":[5,0,0,26,1],
"event_8php.html":[5,0,0,27],
@@ -47,9 +52,9 @@ var NAVTREEINDEX3 =
"event_8php.html#a32ba1b9ddf7a744a9a1512b052e5f850":[5,0,0,27,2],
"event_8php.html#a89ef533faf345db8d64a58d4856bde3a":[5,0,0,27,3],
"event_8php.html#abb74206cf42d694307c3d7abb7af9869":[5,0,0,27,4],
-"events_8php.html":[5,0,1,21],
-"events_8php.html#a1d293fb217ae6bc9e3858c4b32e363ec":[5,0,1,21,0],
-"events_8php.html#ab3e8a8f901175f8e40a8089eea45c075":[5,0,1,21,1],
+"events_8php.html":[5,0,1,22],
+"events_8php.html#a1d293fb217ae6bc9e3858c4b32e363ec":[5,0,1,22,0],
+"events_8php.html#ab3e8a8f901175f8e40a8089eea45c075":[5,0,1,22,1],
"expire_8php.html":[5,0,0,28],
"expire_8php.html#a444e45c9b67727b27db4c779fd51a298":[5,0,0,28,0],
"extract_8php.html":[5,0,2,3],
@@ -57,17 +62,17 @@ var NAVTREEINDEX3 =
"extract_8php.html#a50b05cf2e02ef0b67fcad97106dd7634":[5,0,2,3,2],
"extract_8php.html#a63bb4c41bc532baacf6a4976cfaa0feb":[5,0,2,3,0],
"extract_8php.html#a9590b15215a21e9b42eb546aeef79704":[5,0,2,3,1],
-"fbrowser_8php.html":[5,0,1,22],
-"fbrowser_8php.html#aee476addcf7a3e0fe9454f7dfd5a56c4":[5,0,1,22,0],
+"fbrowser_8php.html":[5,0,1,23],
+"fbrowser_8php.html#aee476addcf7a3e0fe9454f7dfd5a56c4":[5,0,1,23,0],
"features_8php.html":[5,0,0,29],
"features_8php.html#a52b5bdfb61b256713efecf7a7b20b0c0":[5,0,0,29,0],
"features_8php.html#ae73c5b03b01c7284ed7e7e0e774e975c":[5,0,0,29,1],
-"feed_8php.html":[5,0,1,23],
-"feed_8php.html#af86137700b56f33d1d5f25c8dec22c04":[5,0,1,23,0],
-"filer_8php.html":[5,0,1,24],
-"filer_8php.html#a5fd5d7e61b2f9c43cb5f110c89dc4274":[5,0,1,24,0],
-"filerm_8php.html":[5,0,1,25],
-"filerm_8php.html#ae2eb28d2054fa2c37e38689882172208":[5,0,1,25,0],
+"feed_8php.html":[5,0,1,24],
+"feed_8php.html#af86137700b56f33d1d5f25c8dec22c04":[5,0,1,24,0],
+"filer_8php.html":[5,0,1,25],
+"filer_8php.html#a5fd5d7e61b2f9c43cb5f110c89dc4274":[5,0,1,25,0],
+"filerm_8php.html":[5,0,1,26],
+"filerm_8php.html#ae2eb28d2054fa2c37e38689882172208":[5,0,1,26,0],
"files.html":[5,0],
"fpostit_8php.html":[5,0,2,0,0],
"fpostit_8php.html#a3f3ae3ae61578b5671673914fd894443":[5,0,2,0,0,0],
@@ -89,9 +94,9 @@ var NAVTREEINDEX3 =
"friendica-to-smarty-tpl_8py.html#aecf730e0884bb4ddc6c0deb1ef85f8eb":[5,0,2,4,4],
"friendica-to-smarty-tpl_8py.html#af6b2c793958aae2aadc294577431f749":[5,0,2,4,3],
"friendica__smarty_8php.html":[5,0,0,31],
-"fsuggest_8php.html":[5,0,1,27],
-"fsuggest_8php.html#a61ecfe10ce937ed526614f8fd3de3c7d":[5,0,1,27,1],
-"fsuggest_8php.html#aa6c49ed4b50a387f1845f36844dd7998":[5,0,1,27,0],
+"fsuggest_8php.html":[5,0,1,28],
+"fsuggest_8php.html#a61ecfe10ce937ed526614f8fd3de3c7d":[5,0,1,28,1],
+"fsuggest_8php.html#aa6c49ed4b50a387f1845f36844dd7998":[5,0,1,28,0],
"full_8php.html":[5,0,3,0,1],
"full_8php.html#a6fac1b4b8cdfde06ea1b7713479e92db":[5,0,3,0,1,0],
"functions.html":[4,3,0],
@@ -172,8 +177,8 @@ var NAVTREEINDEX3 =
"globals_func_0x77.html":[5,1,1,23],
"globals_func_0x78.html":[5,1,1,24],
"globals_func_0x7a.html":[5,1,1,25],
-"globals_vars.html":[5,1,2,0],
"globals_vars.html":[5,1,2],
+"globals_vars.html":[5,1,2,0],
"globals_vars_0x61.html":[5,1,2,1],
"globals_vars_0x63.html":[5,1,2,2],
"globals_vars_0x64.html":[5,1,2,3],
@@ -197,15 +202,15 @@ var NAVTREEINDEX3 =
"globals_vars_0x7a.html":[5,1,2,21],
"gprobe_8php.html":[5,0,0,32],
"gprobe_8php.html#adf72cb0a70b5b9d99fdec1cc60e18ed1":[5,0,0,32,0],
-"hcard_8php.html":[5,0,1,29],
-"hcard_8php.html#a956c7cae2009652a37900306e5b7b73d":[5,0,1,29,0],
-"hcard_8php.html#ac34f26b0e6a37eef44fa49bea135136d":[5,0,1,29,1],
-"help_8php.html":[5,0,1,30],
-"help_8php.html#af055e15f600ffa6fbca9386fdf715224":[5,0,1,30,0],
+"hcard_8php.html":[5,0,1,30],
+"hcard_8php.html#a956c7cae2009652a37900306e5b7b73d":[5,0,1,30,0],
+"hcard_8php.html#ac34f26b0e6a37eef44fa49bea135136d":[5,0,1,30,1],
+"help_8php.html":[5,0,1,31],
+"help_8php.html#af055e15f600ffa6fbca9386fdf715224":[5,0,1,31,0],
"hierarchy.html":[4,2],
-"home_8php.html":[5,0,1,31],
-"hostxrd_8php.html":[5,0,1,32],
-"hostxrd_8php.html#aa37ffc8e7900bc76c4828bd25916db92":[5,0,1,32,0],
+"home_8php.html":[5,0,1,32],
+"hostxrd_8php.html":[5,0,1,33],
+"hostxrd_8php.html#aa37ffc8e7900bc76c4828bd25916db92":[5,0,1,33,0],
"html2bbcode_8php.html":[5,0,0,34],
"html2bbcode_8php.html#a39c662b19d318990fee2ba795a55d7a7":[5,0,0,34,3],
"html2bbcode_8php.html#a5ad726995ac4070213abdb3bd09f4837":[5,0,0,34,1],
@@ -225,9 +230,9 @@ var NAVTREEINDEX3 =
"identity_8php.html#abf6a9c6ed92d594f1d4513c4e22a7abd":[5,0,0,36,1],
"identity_8php.html#ac9fcd5c4c371998790b5c55c3d0f4633":[5,0,0,36,5],
"identity_8php.html#af2802bc13a00a17b867bba7978ba8f58":[5,0,0,36,7],
-"import_8php.html":[5,0,1,33],
-"import_8php.html#af17fef0410518f7eac205d0ea416eaa2":[5,0,1,33,1],
-"import_8php.html#afdf25ed70096d5dbf4f6d0ca79fea184":[5,0,1,33,0],
+"import_8php.html":[5,0,1,34],
+"import_8php.html#af17fef0410518f7eac205d0ea416eaa2":[5,0,1,34,1],
+"import_8php.html#afdf25ed70096d5dbf4f6d0ca79fea184":[5,0,1,34,0],
"include_2api_8php.html":[5,0,0,5],
"include_2api_8php.html#a0991f72554f821255397d615e76f3203":[5,0,0,5,12],
"include_2api_8php.html#a176c448d79c211ad41c2bbe3124658f5":[5,0,0,5,5],
@@ -244,10 +249,5 @@ var NAVTREEINDEX3 =
"include_2api_8php.html#a58cf4c02ef435996f5c3bc4283d3968d":[5,0,0,5,13],
"include_2api_8php.html#a5990101034e7abf6404feba3cd273629":[5,0,0,5,4],
"include_2api_8php.html#a623793229a7256dd31bcfd5ab90eef08":[5,0,0,5,45],
-"include_2api_8php.html#a645397787618b5c548a31e8686e8cca4":[5,0,0,5,32],
-"include_2api_8php.html#a6951c690d87775eb37e569c66011988e":[5,0,0,5,35],
-"include_2api_8php.html#a6a04b48168ba1d9dd2de3081a630611f":[5,0,0,5,31],
-"include_2api_8php.html#a72bfecac1970bc29b853073e816388ff":[5,0,0,5,6],
-"include_2api_8php.html#a7759ccddc8dff012ad168e511ffe5af5":[5,0,0,5,9],
-"include_2api_8php.html#a864191bb876a515ed71b17e260ef35ad":[5,0,0,5,2]
+"include_2api_8php.html#a645397787618b5c548a31e8686e8cca4":[5,0,0,5,32]
};
diff --git a/doc/html/navtreeindex4.js b/doc/html/navtreeindex4.js
index 14c133d33..637b88738 100644
--- a/doc/html/navtreeindex4.js
+++ b/doc/html/navtreeindex4.js
@@ -1,5 +1,10 @@
var NAVTREEINDEX4 =
{
+"include_2api_8php.html#a6951c690d87775eb37e569c66011988e":[5,0,0,5,35],
+"include_2api_8php.html#a6a04b48168ba1d9dd2de3081a630611f":[5,0,0,5,31],
+"include_2api_8php.html#a72bfecac1970bc29b853073e816388ff":[5,0,0,5,6],
+"include_2api_8php.html#a7759ccddc8dff012ad168e511ffe5af5":[5,0,0,5,9],
+"include_2api_8php.html#a864191bb876a515ed71b17e260ef35ad":[5,0,0,5,2],
"include_2api_8php.html#a8969e8d9c683f12ba17dcd4b059e020d":[5,0,0,5,46],
"include_2api_8php.html#a8b25a186bd0893f51aa72a62f655735e":[5,0,0,5,39],
"include_2api_8php.html#a9160288b7ac220635942d8dc209b78c3":[5,0,0,5,10],
@@ -56,7 +61,7 @@ var NAVTREEINDEX4 =
"include_2directory_8php.html":[5,0,0,25],
"include_2directory_8php.html#aa75d3b0697ca1456aaabdb37a74aa0f0":[5,0,0,25,0],
"include_2follow_8php.html":[5,0,0,30],
-"include_2follow_8php.html#a6553a7650fae55f95660510d90983144":[5,0,0,30,0],
+"include_2follow_8php.html#ae387d4ae097c23d69f3247e7f08140c7":[5,0,0,30,0],
"include_2group_8php.html":[5,0,0,33],
"include_2group_8php.html#a0122ef312df2c5546b1a46b3e6c7b31b":[5,0,0,33,2],
"include_2group_8php.html#a048f6892bfd28852de1b76470df411de":[5,0,0,33,10],
@@ -139,19 +144,19 @@ var NAVTREEINDEX4 =
"interfaceITemplateEngine.html":[4,0,18],
"interfaceITemplateEngine.html#aaa7381c8becc3d1c1790b53988a0f243":[4,0,18,1],
"interfaceITemplateEngine.html#aaf2698adbf46c073c24b162fe1b1c442":[4,0,18,0],
-"intro_8php.html":[5,0,1,34],
-"intro_8php.html#a3e2a523697633ddb4517b9266a515f5b":[5,0,1,34,1],
-"intro_8php.html#abc3abf25da64f98f215126eb08c7936b":[5,0,1,34,0],
-"intro_8php.html#af3681062183ccbdf065ae2647b07d6f1":[5,0,1,34,2],
-"invite_8php.html":[5,0,1,35],
-"invite_8php.html#a244385b28cfd021d308715f01158bfd9":[5,0,1,35,0],
-"invite_8php.html#aeb0881c0f93c8e8552e5ed756ce6e5a5":[5,0,1,35,1],
-"item_8php.html":[5,0,1,36],
-"item_8php.html#a3daae7944f737bd30412a0d042207c0f":[5,0,1,36,0],
-"item_8php.html#a693cd09805755ab85bbb5ecae69a48c3":[5,0,1,36,4],
-"item_8php.html#a764bbb2e9a885a86fb23d0b5e4a09221":[5,0,1,36,3],
-"item_8php.html#a7b63a9d0cd02096e17dcf11f4afa7c10":[5,0,1,36,1],
-"item_8php.html#abd0e603a6696051af16476eb968d52e7":[5,0,1,36,2],
+"intro_8php.html":[5,0,1,35],
+"intro_8php.html#a3e2a523697633ddb4517b9266a515f5b":[5,0,1,35,1],
+"intro_8php.html#abc3abf25da64f98f215126eb08c7936b":[5,0,1,35,0],
+"intro_8php.html#af3681062183ccbdf065ae2647b07d6f1":[5,0,1,35,2],
+"invite_8php.html":[5,0,1,36],
+"invite_8php.html#a244385b28cfd021d308715f01158bfd9":[5,0,1,36,0],
+"invite_8php.html#aeb0881c0f93c8e8552e5ed756ce6e5a5":[5,0,1,36,1],
+"item_8php.html":[5,0,1,37],
+"item_8php.html#a3daae7944f737bd30412a0d042207c0f":[5,0,1,37,0],
+"item_8php.html#a693cd09805755ab85bbb5ecae69a48c3":[5,0,1,37,4],
+"item_8php.html#a764bbb2e9a885a86fb23d0b5e4a09221":[5,0,1,37,3],
+"item_8php.html#a7b63a9d0cd02096e17dcf11f4afa7c10":[5,0,1,37,1],
+"item_8php.html#abd0e603a6696051af16476eb968d52e7":[5,0,1,37,2],
"items_8php.html":[5,0,0,39],
"items_8php.html#a004e89d86b0f29b2c4da20108ecc4091":[5,0,0,39,53],
"items_8php.html#a016dd86c827d08db89061ea81d15c6cb":[5,0,0,39,2],
@@ -217,37 +222,32 @@ var NAVTREEINDEX4 =
"language_8php.html#ac9142ef1d01a235c760deb0f16643f5a":[5,0,0,40,5],
"language_8php.html#ace67d6cad57da08d030ad9dc9b8c836e":[5,0,0,40,2],
"language_8php.html#ae310fb3880484ee1cc4faefe0c63c06d":[5,0,0,40,8],
-"lastpost_8php.html":[5,0,1,37],
-"lastpost_8php.html#a6108289ef2a767495c7c85a24f364983":[5,0,1,37,0],
-"lastpost_8php.html#a82f14cce5d3cfe27f40bdbd2c679d493":[5,0,1,37,1],
-"lastpost_8php.html#ab4c6ebd25736af678e64d55ce508ce8c":[5,0,1,37,2],
-"like_8php.html":[5,0,1,38],
-"like_8php.html#a9d7dd268f21c21e9d29dd2aca2dd9538":[5,0,1,38,0],
-"lockview_8php.html":[5,0,1,39],
-"lockview_8php.html#a851e26ab9a1008df5c5ebebea31e9b44":[5,0,1,39,0],
-"login_8php.html":[5,0,1,40],
-"login_8php.html#a1d69ca88eb9005a7026e128b9a645904":[5,0,1,40,0],
-"lostpass_8php.html":[5,0,1,41],
-"lostpass_8php.html#a0314d94e48c789b1b3a201d740c9eab3":[5,0,1,41,0],
-"lostpass_8php.html#a8ed35ba71a4404eaf4903da61d0321cc":[5,0,1,41,1],
-"magic_8php.html":[5,0,1,42],
-"magic_8php.html#acea2cc792849ca2d71d4b689f66518bf":[5,0,1,42,0],
-"manage_8php.html":[5,0,1,43],
-"manage_8php.html#a2bca247b5296827638959138367db4f5":[5,0,1,43,0],
-"match_8php.html":[5,0,1,44],
-"match_8php.html#a1dd853e959b9e70c1911bb2fb5f5130d":[5,0,1,44,0],
+"lastpost_8php.html":[5,0,1,38],
+"lastpost_8php.html#a6108289ef2a767495c7c85a24f364983":[5,0,1,38,0],
+"lastpost_8php.html#a82f14cce5d3cfe27f40bdbd2c679d493":[5,0,1,38,1],
+"lastpost_8php.html#ab4c6ebd25736af678e64d55ce508ce8c":[5,0,1,38,2],
+"like_8php.html":[5,0,1,39],
+"like_8php.html#a9d7dd268f21c21e9d29dd2aca2dd9538":[5,0,1,39,0],
+"lockview_8php.html":[5,0,1,40],
+"lockview_8php.html#a851e26ab9a1008df5c5ebebea31e9b44":[5,0,1,40,0],
+"login_8php.html":[5,0,1,41],
+"login_8php.html#a1d69ca88eb9005a7026e128b9a645904":[5,0,1,41,0],
+"lostpass_8php.html":[5,0,1,42],
+"lostpass_8php.html#a0314d94e48c789b1b3a201d740c9eab3":[5,0,1,42,0],
+"lostpass_8php.html#a8ed35ba71a4404eaf4903da61d0321cc":[5,0,1,42,1],
+"magic_8php.html":[5,0,1,43],
+"magic_8php.html#acea2cc792849ca2d71d4b689f66518bf":[5,0,1,43,0],
+"manage_8php.html":[5,0,1,44],
+"manage_8php.html#a2bca247b5296827638959138367db4f5":[5,0,1,44,0],
+"match_8php.html":[5,0,1,45],
+"match_8php.html#a1dd853e959b9e70c1911bb2fb5f5130d":[5,0,1,45,0],
"md_README.html":[2],
"md_config.html":[0],
"md_fresh.html":[1],
"minimal_8php.html":[5,0,3,0,2],
-"mitem_8php.html":[5,0,1,47],
-"mitem_8php.html#a6ee694cca4b551a20d7c7a94b5243ec1":[5,0,1,47,2],
-"mitem_8php.html#a7a31b702ecad18eeb6a38b243ff0037e":[5,0,1,47,0],
-"mitem_8php.html#a9627cd857cafdf04e4fc0ae48c8e8518":[5,0,1,47,1],
-"mod_2api_8php.html":[5,0,1,4],
-"mod_2api_8php.html#a02ae0f60e240dc806b860edb7d582117":[5,0,1,4,2],
-"mod_2api_8php.html#a33315b5bbf5418f6850b2038107b526d":[5,0,1,4,0],
-"mod_2api_8php.html#a6fe77f05c07cb51048df0d557b4b9bd2":[5,0,1,4,1],
-"mod_2attach_8php.html":[5,0,1,6],
-"mod_2attach_8php.html#aa88eb5ad87aa1036a30e70339cc6c1b1":[5,0,1,6,0]
+"mitem_8php.html":[5,0,1,48],
+"mitem_8php.html#a6ee694cca4b551a20d7c7a94b5243ec1":[5,0,1,48,2],
+"mitem_8php.html#a7a31b702ecad18eeb6a38b243ff0037e":[5,0,1,48,0],
+"mitem_8php.html#a9627cd857cafdf04e4fc0ae48c8e8518":[5,0,1,48,1],
+"mod_2api_8php.html":[5,0,1,4]
};
diff --git a/doc/html/navtreeindex5.js b/doc/html/navtreeindex5.js
index 4528e698d..deba1f96a 100644
--- a/doc/html/navtreeindex5.js
+++ b/doc/html/navtreeindex5.js
@@ -1,54 +1,59 @@
var NAVTREEINDEX5 =
{
-"mod_2directory_8php.html":[5,0,1,15],
-"mod_2directory_8php.html#a5ee59c213508b6b9787612a8219cb5bf":[5,0,1,15,2],
-"mod_2directory_8php.html#aa1d928543212871491706216742dd73c":[5,0,1,15,0],
-"mod_2directory_8php.html#aac79396570d759da2efac24fcedf5b44":[5,0,1,15,1],
-"mod_2follow_8php.html":[5,0,1,26],
-"mod_2follow_8php.html#a171f5b19f50d7738adc3b2e96ec6018a":[5,0,1,26,1],
-"mod_2follow_8php.html#a4c540ea4e9f5c581c1a53516ac585592":[5,0,1,26,0],
-"mod_2group_8php.html":[5,0,1,28],
-"mod_2group_8php.html#a07a64f6c65b0080d8190b3d9728a7a83":[5,0,1,28,1],
-"mod_2group_8php.html#aeb0784dd928e53e6d8693513bec8928c":[5,0,1,28,0],
-"mod_2group_8php.html#aed1f009b1221348021bb34761160ef35":[5,0,1,28,2],
-"mod_2menu_8php.html":[5,0,1,45],
-"mod_2menu_8php.html#a6fed23af14d71a78a4153c8363a685cf":[5,0,1,45,0],
-"mod_2menu_8php.html#aaa491ef173868fe002aece4632bcf393":[5,0,1,45,1],
-"mod_2message_8php.html":[5,0,1,46],
-"mod_2message_8php.html#a0db7030362a7e9ed9549b341d7b35718":[5,0,1,46,2],
-"mod_2message_8php.html#a3547ed86d09a4bb8fa64ec374a40ee79":[5,0,1,46,1],
-"mod_2message_8php.html#af4ba72486117cc24335fd8e92a2112a7":[5,0,1,46,0],
-"mod_2network_8php.html":[5,0,1,50],
-"mod_2network_8php.html#a180fce90ad11d7e0e45be094da7149ec":[5,0,1,50,1],
-"mod_2network_8php.html#a36e03af6f2efe62ecaa247509365bfad":[5,0,1,50,3],
-"mod_2network_8php.html#a43f2f29b90c5e29072c561934bc8f8b4":[5,0,1,50,0],
-"mod_2network_8php.html#aeaa518c1a317516a3da337b88d358666":[5,0,1,50,2],
-"mod_2notify_8php.html":[5,0,1,54],
-"mod_2notify_8php.html#a94f9a6a9d4b5fd704baafff0c34f41ae":[5,0,1,54,1],
-"mod_2notify_8php.html#acdf3851688ebd6d6a575eb84ef9febe3":[5,0,1,54,0],
-"mod_2oembed_8php.html":[5,0,1,55],
-"mod_2oembed_8php.html#a9145025aaf057fb5d3f9f7011e5e1014":[5,0,1,55,0],
-"mod_2photos_8php.html":[5,0,1,61],
-"mod_2photos_8php.html#a062bed4d04d14fee8a53f4c9be673080":[5,0,1,61,2],
-"mod_2photos_8php.html#aa87382611a66ec5effdb2d78f13f5812":[5,0,1,61,0],
-"mod_2photos_8php.html#ab950295cd77626f5fe65331a87693014":[5,0,1,61,1],
+"mod_2api_8php.html#a02ae0f60e240dc806b860edb7d582117":[5,0,1,4,2],
+"mod_2api_8php.html#a33315b5bbf5418f6850b2038107b526d":[5,0,1,4,0],
+"mod_2api_8php.html#a6fe77f05c07cb51048df0d557b4b9bd2":[5,0,1,4,1],
+"mod_2attach_8php.html":[5,0,1,6],
+"mod_2attach_8php.html#aa88eb5ad87aa1036a30e70339cc6c1b1":[5,0,1,6,0],
+"mod_2directory_8php.html":[5,0,1,16],
+"mod_2directory_8php.html#a5ee59c213508b6b9787612a8219cb5bf":[5,0,1,16,2],
+"mod_2directory_8php.html#aa1d928543212871491706216742dd73c":[5,0,1,16,0],
+"mod_2directory_8php.html#aac79396570d759da2efac24fcedf5b44":[5,0,1,16,1],
+"mod_2follow_8php.html":[5,0,1,27],
+"mod_2follow_8php.html#a171f5b19f50d7738adc3b2e96ec6018a":[5,0,1,27,1],
+"mod_2follow_8php.html#a4c540ea4e9f5c581c1a53516ac585592":[5,0,1,27,0],
+"mod_2group_8php.html":[5,0,1,29],
+"mod_2group_8php.html#a07a64f6c65b0080d8190b3d9728a7a83":[5,0,1,29,1],
+"mod_2group_8php.html#aeb0784dd928e53e6d8693513bec8928c":[5,0,1,29,0],
+"mod_2group_8php.html#aed1f009b1221348021bb34761160ef35":[5,0,1,29,2],
+"mod_2menu_8php.html":[5,0,1,46],
+"mod_2menu_8php.html#a6fed23af14d71a78a4153c8363a685cf":[5,0,1,46,0],
+"mod_2menu_8php.html#aaa491ef173868fe002aece4632bcf393":[5,0,1,46,1],
+"mod_2message_8php.html":[5,0,1,47],
+"mod_2message_8php.html#a0db7030362a7e9ed9549b341d7b35718":[5,0,1,47,2],
+"mod_2message_8php.html#a3547ed86d09a4bb8fa64ec374a40ee79":[5,0,1,47,1],
+"mod_2message_8php.html#af4ba72486117cc24335fd8e92a2112a7":[5,0,1,47,0],
+"mod_2network_8php.html":[5,0,1,51],
+"mod_2network_8php.html#a180fce90ad11d7e0e45be094da7149ec":[5,0,1,51,1],
+"mod_2network_8php.html#a36e03af6f2efe62ecaa247509365bfad":[5,0,1,51,3],
+"mod_2network_8php.html#a43f2f29b90c5e29072c561934bc8f8b4":[5,0,1,51,0],
+"mod_2network_8php.html#aeaa518c1a317516a3da337b88d358666":[5,0,1,51,2],
+"mod_2notify_8php.html":[5,0,1,55],
+"mod_2notify_8php.html#a94f9a6a9d4b5fd704baafff0c34f41ae":[5,0,1,55,1],
+"mod_2notify_8php.html#acdf3851688ebd6d6a575eb84ef9febe3":[5,0,1,55,0],
+"mod_2oembed_8php.html":[5,0,1,56],
+"mod_2oembed_8php.html#a9145025aaf057fb5d3f9f7011e5e1014":[5,0,1,56,0],
+"mod_2photos_8php.html":[5,0,1,62],
+"mod_2photos_8php.html#a062bed4d04d14fee8a53f4c9be673080":[5,0,1,62,2],
+"mod_2photos_8php.html#aa87382611a66ec5effdb2d78f13f5812":[5,0,1,62,0],
+"mod_2photos_8php.html#ab950295cd77626f5fe65331a87693014":[5,0,1,62,1],
"mod__import_8php.html":[5,0,3,0,3],
"mod__import_8php.html#a8db1899eeeb44dabd0904065b63627bb":[5,0,3,0,3,0],
"mod__new__channel_8php.html":[5,0,3,0,4],
"mod__new__channel_8php.html#a8db1899eeeb44dabd0904065b63627bb":[5,0,3,0,4,0],
"mod__register_8php.html":[5,0,3,0,5],
"mod__register_8php.html#a8db1899eeeb44dabd0904065b63627bb":[5,0,3,0,5,0],
-"mood_8php.html":[5,0,1,48],
-"mood_8php.html#a721b9b6703b3234a005641c92d409b8f":[5,0,1,48,0],
-"mood_8php.html#a7ae136dd7476865b4828136175db5022":[5,0,1,48,1],
-"msearch_8php.html":[5,0,1,49],
-"msearch_8php.html#ac80d2a6c0a92e79eec7efbbccd74d9a8":[5,0,1,49,0],
+"mood_8php.html":[5,0,1,49],
+"mood_8php.html#a721b9b6703b3234a005641c92d409b8f":[5,0,1,49,0],
+"mood_8php.html#a7ae136dd7476865b4828136175db5022":[5,0,1,49,1],
+"msearch_8php.html":[5,0,1,50],
+"msearch_8php.html#ac80d2a6c0a92e79eec7efbbccd74d9a8":[5,0,1,50,0],
"namespaceFriendica.html":[3,0,1],
"namespaceFriendica.html":[4,0,1],
"namespaceacl__selectors.html":[4,0,0],
"namespaceacl__selectors.html":[3,0,0],
-"namespacefriendica-to-smarty-tpl.html":[4,0,2],
"namespacefriendica-to-smarty-tpl.html":[3,0,2],
+"namespacefriendica-to-smarty-tpl.html":[4,0,2],
"namespacemembers.html":[3,1,0],
"namespacemembers_func.html":[3,1,1],
"namespacemembers_vars.html":[3,1,2],
@@ -60,47 +65,48 @@ var NAVTREEINDEX5 =
"nav_8php.html":[5,0,0,43],
"nav_8php.html#a43be0df73b90647ea70947ce004e231e":[5,0,0,43,0],
"nav_8php.html#ac3c920ce3ea5b0d9e0678ee37155f06a":[5,0,0,43,1],
-"new__channel_8php.html":[5,0,1,51],
-"new__channel_8php.html#a180b0646957db8290482f02454ad7f23":[5,0,1,51,2],
-"new__channel_8php.html#a1ad7f99e4366a32942c6b954aba3a164":[5,0,1,51,1],
-"new__channel_8php.html#ae585191610f79da129492482ce8e2fee":[5,0,1,51,0],
-"nogroup_8php.html":[5,0,1,52],
-"nogroup_8php.html#a099cb353bf62e8453069ce107b763212":[5,0,1,52,1],
-"nogroup_8php.html#a52085b183f97c552f1db5c4926e8ec30":[5,0,1,52,0],
-"notifications_8php.html":[5,0,1,53],
-"notifications_8php.html#a5baffec7b2e625c9f9cefbc097550d33":[5,0,1,53,1],
-"notifications_8php.html#aadd0b5525bd8c283a5d8a37982bbfe62":[5,0,1,53,0],
+"new__channel_8php.html":[5,0,1,52],
+"new__channel_8php.html#a180b0646957db8290482f02454ad7f23":[5,0,1,52,2],
+"new__channel_8php.html#a1ad7f99e4366a32942c6b954aba3a164":[5,0,1,52,1],
+"new__channel_8php.html#ae585191610f79da129492482ce8e2fee":[5,0,1,52,0],
+"nogroup_8php.html":[5,0,1,53],
+"nogroup_8php.html#a099cb353bf62e8453069ce107b763212":[5,0,1,53,1],
+"nogroup_8php.html#a52085b183f97c552f1db5c4926e8ec30":[5,0,1,53,0],
+"notifications_8php.html":[5,0,1,54],
+"notifications_8php.html#a5baffec7b2e625c9f9cefbc097550d33":[5,0,1,54,1],
+"notifications_8php.html#aadd0b5525bd8c283a5d8a37982bbfe62":[5,0,1,54,0],
"notifier_8php.html":[5,0,0,45],
"notifier_8php.html#a568c502f626cff95e344c0748938b85d":[5,0,0,45,0],
"oauth_8php.html":[5,0,0,47],
"oauth_8php.html#a7a32a5990f113ac9465b03b29175cf16":[5,0,0,47,3],
"oauth_8php.html#ad343cab37aa860d2d14dc86b7f5ca0c6":[5,0,0,47,2],
-"oexchange_8php.html":[5,0,1,56],
-"oexchange_8php.html#a2d8b785cd7d041a4e6274f5af370cf26":[5,0,1,56,0],
-"oexchange_8php.html#ac8e2e469ddc3db984b0c1b44558aca59":[5,0,1,56,1],
+"oexchange_8php.html":[5,0,1,57],
+"oexchange_8php.html#a2d8b785cd7d041a4e6274f5af370cf26":[5,0,1,57,0],
+"oexchange_8php.html#ac8e2e469ddc3db984b0c1b44558aca59":[5,0,1,57,1],
"onepoll_8php.html":[5,0,0,49],
"onepoll_8php.html#a72753b2fdec79b37c7f432035c91fb6d":[5,0,0,49,0],
-"opensearch_8php.html":[5,0,1,57],
-"opensearch_8php.html#ad13034877a496565ac7d99e9fc6f55e9":[5,0,1,57,0],
-"page_8php.html":[5,0,1,58],
-"page_8php.html#a4d89800c0366a239191b1692c09635cf":[5,0,1,58,1],
-"page_8php.html#a91a5f649f68406149108bded1dc90b22":[5,0,1,58,0],
+"opensearch_8php.html":[5,0,1,58],
+"opensearch_8php.html#ad13034877a496565ac7d99e9fc6f55e9":[5,0,1,58,0],
+"page_8php.html":[5,0,1,59],
+"page_8php.html#a4d89800c0366a239191b1692c09635cf":[5,0,1,59,1],
+"page_8php.html#a91a5f649f68406149108bded1dc90b22":[5,0,1,59,0],
"page__widgets_8php.html":[5,0,0,50],
"page__widgets_8php.html#a1a1e729da27f252cab6678288a17958f":[5,0,0,50,1],
"page__widgets_8php.html#ad82011c1ed90d9de8b9f34c12af5c6f0":[5,0,0,50,0],
"pages.html":[],
-"parse__url_8php.html":[5,0,1,59],
-"parse__url_8php.html#a05a9e8944380ba3cf6bbf5893dd4b74b":[5,0,1,59,2],
-"parse__url_8php.html#a25635549f2c22955d72465f4d2e58993":[5,0,1,59,3],
-"parse__url_8php.html#a496f4e3836154f6f32b8e805a7160d3a":[5,0,1,59,1],
-"parse__url_8php.html#aa7dd8f961bea042d62726ed909e4a868":[5,0,1,59,0],
+"parse__url_8php.html":[5,0,1,60],
+"parse__url_8php.html#a05a9e8944380ba3cf6bbf5893dd4b74b":[5,0,1,60,2],
+"parse__url_8php.html#a25635549f2c22955d72465f4d2e58993":[5,0,1,60,3],
+"parse__url_8php.html#a496f4e3836154f6f32b8e805a7160d3a":[5,0,1,60,1],
+"parse__url_8php.html#aa7dd8f961bea042d62726ed909e4a868":[5,0,1,60,0],
"permissions_8php.html":[5,0,0,51],
"permissions_8php.html#a040fd3d3b8517658b1668ae0cd093972":[5,0,0,51,2],
"permissions_8php.html#a0f5bd9f7f4c8fb7ba4b2c1ed048b4dc7":[5,0,0,51,0],
"permissions_8php.html#a67ada9ed51e77885b6b0f6a28cee1835":[5,0,0,51,3],
+"permissions_8php.html#aa8b7b102c653649d7a71b5a1c044d90d":[5,0,0,51,4],
"permissions_8php.html#aeca9b280f3dc3358c89976d81d690008":[5,0,0,51,1],
-"photo_8php.html":[5,0,1,60],
-"photo_8php.html#a582779d24882b0d31ee909a91d70a448":[5,0,1,60,0],
+"photo_8php.html":[5,0,1,61],
+"photo_8php.html#a582779d24882b0d31ee909a91d70a448":[5,0,1,61,0],
"photo__driver_8php.html":[5,0,0,1,0],
"photo__driver_8php.html#a102f3f26f67e0e38f4322a771951c1ca":[5,0,0,1,0,3],
"photo__driver_8php.html#a1d0bc7161dec0d177b7d3bbe4421af9a":[5,0,0,1,0,2],
@@ -120,10 +126,10 @@ var NAVTREEINDEX5 =
"php_2default_8php.html":[5,0,3,0,0],
"php_2default_8php.html#a23bc1996b18e69c1a3ab44536613a762":[5,0,3,0,0,0],
"php_2theme__init_8php.html":[5,0,3,0,6],
-"php_8php.html":[5,0,1,62],
-"php_8php.html#adb7164dfed9a4ecbe2e168e1e78f12f6":[5,0,1,62,0],
-"ping_8php.html":[5,0,1,63],
-"ping_8php.html#a77217b1b190b4c5d8770867b45f0c0a1":[5,0,1,63,0],
+"php_8php.html":[5,0,1,63],
+"php_8php.html#adb7164dfed9a4ecbe2e168e1e78f12f6":[5,0,1,63,0],
+"ping_8php.html":[5,0,1,64],
+"ping_8php.html#a77217b1b190b4c5d8770867b45f0c0a1":[5,0,1,64,0],
"plugin_8php.html":[5,0,0,53],
"plugin_8php.html#a030cec6793b909c439c0336ba39b1571":[5,0,0,53,17],
"plugin_8php.html#a093a9cb98f51e3643634bd8bc6ed6e76":[5,0,0,53,20],
@@ -153,52 +159,52 @@ var NAVTREEINDEX5 =
"plugin_8php.html#aff0178bd8d0b34a94d5efddc883edd35":[5,0,0,53,5],
"po2php_8php.html":[5,0,2,6],
"po2php_8php.html#a3b75e36f913198299e99559b175cd8b4":[5,0,2,6,0],
-"poco_8php.html":[5,0,1,64],
-"poco_8php.html#a53def16f75e3d41f1d2bb7cfa4905498":[5,0,1,64,0],
-"poke_8php.html":[5,0,1,65],
-"poke_8php.html#a9725aab97b3983e6a98bd81c4efe7d3b":[5,0,1,65,1],
-"poke_8php.html#ac9190563a8da9c07a16f9dcd71cf6993":[5,0,1,65,0],
+"poco_8php.html":[5,0,1,65],
+"poco_8php.html#a53def16f75e3d41f1d2bb7cfa4905498":[5,0,1,65,0],
+"poke_8php.html":[5,0,1,66],
+"poke_8php.html#a9725aab97b3983e6a98bd81c4efe7d3b":[5,0,1,66,1],
+"poke_8php.html#ac9190563a8da9c07a16f9dcd71cf6993":[5,0,1,66,0],
"poller_8php.html":[5,0,0,54],
"poller_8php.html#a5f12df3a4738124b6c039971e87e76da":[5,0,0,54,0],
-"post_8php.html":[5,0,1,66],
-"post_8php.html#af4b48181ce773ef0cdfc972441445c34":[5,0,1,66,0],
-"post_8php.html#af59e6a1dc22d19d9257b01cd7ccedb75":[5,0,1,66,1],
-"pretheme_8php.html":[5,0,1,67],
-"pretheme_8php.html#af5660943ee99db5fd75182316522eafe":[5,0,1,67,0],
-"probe_8php.html":[5,0,1,68],
-"probe_8php.html#a1f1db3fa6038e451e737964c94bf5e99":[5,0,1,68,0],
-"profile_8php.html":[5,0,1,69],
-"profile_8php.html#a1a2482b775476f2f64ea5e8f4fc3fd1e":[5,0,1,69,0],
-"profile_8php.html#a3775cf6eef6587e5143133356a7b76c0":[5,0,1,69,1],
-"profile_8php.html#ab5d0246be0552e2182a585c1206d22a5":[5,0,1,69,2],
+"post_8php.html":[5,0,1,67],
+"post_8php.html#af4b48181ce773ef0cdfc972441445c34":[5,0,1,67,0],
+"post_8php.html#af59e6a1dc22d19d9257b01cd7ccedb75":[5,0,1,67,1],
+"pretheme_8php.html":[5,0,1,68],
+"pretheme_8php.html#af5660943ee99db5fd75182316522eafe":[5,0,1,68,0],
+"probe_8php.html":[5,0,1,69],
+"probe_8php.html#a1f1db3fa6038e451e737964c94bf5e99":[5,0,1,69,0],
+"profile_8php.html":[5,0,1,70],
+"profile_8php.html#a1a2482b775476f2f64ea5e8f4fc3fd1e":[5,0,1,70,0],
+"profile_8php.html#a3775cf6eef6587e5143133356a7b76c0":[5,0,1,70,1],
+"profile_8php.html#ab5d0246be0552e2182a585c1206d22a5":[5,0,1,70,2],
"profile__advanced_8php.html":[5,0,0,55],
"profile__advanced_8php.html#aa870d2c1f558cfd52bef05bc124e8fa4":[5,0,0,55,0],
-"profile__photo_8php.html":[5,0,1,70],
-"profile__photo_8php.html#a140631c56438fbfacb61a1eb43067d02":[5,0,1,70,1],
-"profile__photo_8php.html#a4b80234074bd603221aa5364f330e479":[5,0,1,70,2],
-"profile__photo_8php.html#ac9cd968a767e2ae1b88383b6cdd6dbe3":[5,0,1,70,0],
+"profile__photo_8php.html":[5,0,1,71],
+"profile__photo_8php.html#a140631c56438fbfacb61a1eb43067d02":[5,0,1,71,1],
+"profile__photo_8php.html#a4b80234074bd603221aa5364f330e479":[5,0,1,71,2],
+"profile__photo_8php.html#ac9cd968a767e2ae1b88383b6cdd6dbe3":[5,0,1,71,0],
"profile__selectors_8php.html":[5,0,0,56],
"profile__selectors_8php.html#a3b50b3ea4ea4bdbebebfffc5d1b157c7":[5,0,0,56,2],
"profile__selectors_8php.html#a7473dd095987e1cdcc79d4f0bb5e6798":[5,0,0,56,1],
"profile__selectors_8php.html#ae2b2c087e6530c61c0b256fd26d52355":[5,0,0,56,0],
-"profiles_8php.html":[5,0,1,71],
-"profiles_8php.html#a2a3ac90f51941ff78b85e9389304969c":[5,0,1,71,0],
-"profiles_8php.html#a36f71405ad536228f8bb84a551b23f7e":[5,0,1,71,2],
-"profiles_8php.html#a46975783b8b8d70402d51487eb1f0b00":[5,0,1,71,1],
-"profiles_8php.html#ab0362c81b1d3b0b12a772b9fac446e04":[5,0,1,71,3],
-"profperm_8php.html":[5,0,1,72],
-"profperm_8php.html#a17fb64ec05edee1dc94d95438807d6c6":[5,0,1,72,2],
-"profperm_8php.html#a77fd398ae7c25142e1d9ad724ec347cc":[5,0,1,72,0],
-"profperm_8php.html#aef015787de2373d9fb3fe3f814fb5023":[5,0,1,72,1],
-"qsearch_8php.html":[5,0,1,73],
-"qsearch_8php.html#a0501887b95bd8fa21018b2936a668894":[5,0,1,73,0],
+"profiles_8php.html":[5,0,1,72],
+"profiles_8php.html#a2a3ac90f51941ff78b85e9389304969c":[5,0,1,72,0],
+"profiles_8php.html#a36f71405ad536228f8bb84a551b23f7e":[5,0,1,72,2],
+"profiles_8php.html#a46975783b8b8d70402d51487eb1f0b00":[5,0,1,72,1],
+"profiles_8php.html#ab0362c81b1d3b0b12a772b9fac446e04":[5,0,1,72,3],
+"profperm_8php.html":[5,0,1,73],
+"profperm_8php.html#a17fb64ec05edee1dc94d95438807d6c6":[5,0,1,73,2],
+"profperm_8php.html#a77fd398ae7c25142e1d9ad724ec347cc":[5,0,1,73,0],
+"profperm_8php.html#aef015787de2373d9fb3fe3f814fb5023":[5,0,1,73,1],
+"qsearch_8php.html":[5,0,1,74],
+"qsearch_8php.html#a0501887b95bd8fa21018b2936a668894":[5,0,1,74,0],
"queue_8php.html":[5,0,0,58],
"queue_8php.html#af8c93de86d866c3200174c8450a0f341":[5,0,0,58,0],
"queue__fn_8php.html":[5,0,0,59],
"queue__fn_8php.html#a4c2876181f75a4a61e85b7f00dfdbba1":[5,0,0,59,1],
"queue__fn_8php.html#a8fe71e981399bbf5d000a6ca42f57b24":[5,0,0,59,0],
-"randprof_8php.html":[5,0,1,74],
-"randprof_8php.html#abf5dba3c608b9304cbf68327cd31b090":[5,0,1,74,0],
+"randprof_8php.html":[5,0,1,75],
+"randprof_8php.html#abf5dba3c608b9304cbf68327cd31b090":[5,0,1,75,0],
"redbasic_2php_2style_8php.html":[5,0,3,1,0,0,1],
"redbasic_2php_2style_8php.html#a02d39b683a42fffbb27823d3860283bd":[5,0,3,1,0,0,1,14],
"redbasic_2php_2style_8php.html#a03a72942b7428fd9af1224770d20a8ba":[5,0,3,1,0,0,1,5],
@@ -222,8 +228,8 @@ var NAVTREEINDEX5 =
"redbasic_2php_2style_8php.html#af3a16c5f0dd7a74cf9acf6a49fff73a7":[5,0,3,1,0,0,1,18],
"redbasic_2php_2theme_8php.html":[5,0,3,1,0,0,2],
"redbasic_2php_2theme_8php.html#af6eb813e9fc7e2d76ac1b82bc5c0ed9b":[5,0,3,1,0,0,2,0],
-"redir_8php.html":[5,0,1,75],
-"redir_8php.html#a9ac266c3f5cf0d94ef63e6d0f2edf1f5":[5,0,1,75,0],
+"redir_8php.html":[5,0,1,76],
+"redir_8php.html#a9ac266c3f5cf0d94ef63e6d0f2edf1f5":[5,0,1,76,0],
"redstrap_2php_2style_8php.html":[5,0,3,1,1,0,2],
"redstrap_2php_2style_8php.html#a02d39b683a42fffbb27823d3860283bd":[5,0,3,1,1,0,2,13],
"redstrap_2php_2style_8php.html#a03a72942b7428fd9af1224770d20a8ba":[5,0,3,1,1,0,2,5],
@@ -243,11 +249,5 @@ var NAVTREEINDEX5 =
"redstrap_2php_2style_8php.html#addf42c3d02e53f8e4153f3bb9dabfcda":[5,0,3,1,1,0,2,9],
"redstrap_2php_2style_8php.html#aef266cfcb27c6ddb3292584c945bab33":[5,0,3,1,1,0,2,7],
"redstrap_2php_2theme_8php.html":[5,0,3,1,1,0,3],
-"redstrap_2php_2theme_8php.html#a4dac61d466b4261deca2846f548e484a":[5,0,3,1,1,0,3,0],
-"register_8php.html":[5,0,1,76],
-"register_8php.html#a0e91f57f111407ea8d3223a05022bb2a":[5,0,1,76,0],
-"register_8php.html#a51731dcc1917c58a790eb1c0f6132271":[5,0,1,76,2],
-"register_8php.html#ae20c0cd40f738d6295de58b9202c83d5":[5,0,1,76,1],
-"regmod_8php.html":[5,0,1,77],
-"regmod_8php.html#a7953df4e32e63946565e90cdd5d50409":[5,0,1,77,0]
+"redstrap_2php_2theme_8php.html#a4dac61d466b4261deca2846f548e484a":[5,0,3,1,1,0,3,0]
};
diff --git a/doc/html/navtreeindex6.js b/doc/html/navtreeindex6.js
index eda4b9d0e..e010fec30 100644
--- a/doc/html/navtreeindex6.js
+++ b/doc/html/navtreeindex6.js
@@ -1,21 +1,27 @@
var NAVTREEINDEX6 =
{
-"removeme_8php.html":[5,0,1,78],
-"removeme_8php.html#a065a589caa2aa84c60f7073a28f0ad9c":[5,0,1,78,0],
-"removeme_8php.html#a7be08738beca44bb98a79e01cdb2ee88":[5,0,1,78,1],
-"rmagic_8php.html":[5,0,1,79],
-"rmagic_8php.html#a3e28db1e5cfa7e5c2617f90222c1caef":[5,0,1,79,0],
-"rmagic_8php.html#a869de069d081b3c4e98b957d06bbf08f":[5,0,1,79,2],
-"rmagic_8php.html#a95455edd43f1bff39446a57388cdde16":[5,0,1,79,1],
-"rsd__xml_8php.html":[5,0,1,80],
-"rsd__xml_8php.html#a740cd02fa15e5a53f8547fac73f0ab82":[5,0,1,80,0],
-"search_8php.html":[5,0,1,81],
-"search_8php.html#a230ec9681ddee3b5b8b40c8d550f32f7":[5,0,1,81,2],
-"search_8php.html#aa911f7c7f0cdb0284e35d0ed610f19c6":[5,0,1,81,3],
-"search_8php.html#ab2568591359edde5b483a6cd9a24b2cc":[5,0,1,81,0],
-"search_8php.html#acf19fd30f07f495781ca0d7a0a08b435":[5,0,1,81,1],
-"search__ac_8php.html":[5,0,1,82],
-"search__ac_8php.html#a14f90c83a3f2be095e9e2992a8d66138":[5,0,1,82,0],
+"register_8php.html":[5,0,1,77],
+"register_8php.html#a0e91f57f111407ea8d3223a05022bb2a":[5,0,1,77,0],
+"register_8php.html#a51731dcc1917c58a790eb1c0f6132271":[5,0,1,77,2],
+"register_8php.html#ae20c0cd40f738d6295de58b9202c83d5":[5,0,1,77,1],
+"regmod_8php.html":[5,0,1,78],
+"regmod_8php.html#a7953df4e32e63946565e90cdd5d50409":[5,0,1,78,0],
+"removeme_8php.html":[5,0,1,79],
+"removeme_8php.html#a065a589caa2aa84c60f7073a28f0ad9c":[5,0,1,79,0],
+"removeme_8php.html#a7be08738beca44bb98a79e01cdb2ee88":[5,0,1,79,1],
+"rmagic_8php.html":[5,0,1,80],
+"rmagic_8php.html#a3e28db1e5cfa7e5c2617f90222c1caef":[5,0,1,80,0],
+"rmagic_8php.html#a869de069d081b3c4e98b957d06bbf08f":[5,0,1,80,2],
+"rmagic_8php.html#a95455edd43f1bff39446a57388cdde16":[5,0,1,80,1],
+"rsd__xml_8php.html":[5,0,1,81],
+"rsd__xml_8php.html#a740cd02fa15e5a53f8547fac73f0ab82":[5,0,1,81,0],
+"search_8php.html":[5,0,1,82],
+"search_8php.html#a230ec9681ddee3b5b8b40c8d550f32f7":[5,0,1,82,2],
+"search_8php.html#aa911f7c7f0cdb0284e35d0ed610f19c6":[5,0,1,82,3],
+"search_8php.html#ab2568591359edde5b483a6cd9a24b2cc":[5,0,1,82,0],
+"search_8php.html#acf19fd30f07f495781ca0d7a0a08b435":[5,0,1,82,1],
+"search__ac_8php.html":[5,0,1,83],
+"search__ac_8php.html#a14f90c83a3f2be095e9e2992a8d66138":[5,0,1,83,0],
"security_8php.html":[5,0,0,60],
"security_8php.html#a20f8b9851f23ee8894b8925584ef6821":[5,0,0,60,2],
"security_8php.html#a444ac867dfa8c37cf0a7a226412bee28":[5,0,0,60,4],
@@ -39,37 +45,37 @@ var NAVTREEINDEX6 =
"session_8php.html#ac95373f4966862a028033dd2f94d4da1":[5,0,0,61,3],
"session_8php.html#af0100a2642a5268594bbd5742a03d885":[5,0,0,61,9],
"session_8php.html#af230b86bfff7db66c3bdd7e0bbc24052":[5,0,0,61,2],
-"settings_8php.html":[5,0,1,83],
-"settings_8php.html#a39abc76ff5459c57e3b957664f273f18":[5,0,1,83,0],
-"settings_8php.html#a3a4cde287482fced008583f54ba2a722":[5,0,1,83,2],
-"settings_8php.html#aa7ee94d88ac088edb04ccf3a26de3586":[5,0,1,83,3],
-"settings_8php.html#ae5aebccb006bee1300078576baaf5582":[5,0,1,83,1],
-"setup_8php.html":[5,0,1,84],
-"setup_8php.html#a0c3f3b671381f6dccd924b8ecdfc56c4":[5,0,1,84,2],
-"setup_8php.html#a13cf286774149a0a7bd8adb8179cec75":[5,0,1,84,13],
-"setup_8php.html#a14d208682a88632290c895d20da6e7d6":[5,0,1,84,5],
-"setup_8php.html#a267555abd17290e659b4bf44b885e4e0":[5,0,1,84,12],
-"setup_8php.html#a2b375ddc555140236fc500135de99371":[5,0,1,84,9],
-"setup_8php.html#a5ad92c0857d1dadd6b60a9a557159c9f":[5,0,1,84,3],
-"setup_8php.html#a69a450e06dd3771fb51d3e4b0266a35e":[5,0,1,84,1],
-"setup_8php.html#a8652788e8589778c5f81634a9d5b9429":[5,0,1,84,7],
-"setup_8php.html#a88247384a96e14516f474d7af6a465c1":[5,0,1,84,11],
-"setup_8php.html#aa3bbb111780da70ba35cc23a306f2c76":[5,0,1,84,4],
-"setup_8php.html#abe405d227ba7232971964a706d4f3bce":[5,0,1,84,10],
-"setup_8php.html#ad2e0375a9ab87ebe6e78124ee125054a":[5,0,1,84,8],
-"setup_8php.html#addb24714bc2542aa4f4215e98fe48432":[5,0,1,84,15],
-"setup_8php.html#ae8e4d9279a61de74d5f39962cb7b6ca1":[5,0,1,84,0],
-"setup_8php.html#aea1ebdda58ec938f4e7b31aa5c5f6b58":[5,0,1,84,14],
-"setup_8php.html#afd8b0b3ade1507c45325caf377bf459d":[5,0,1,84,6],
-"share_8php.html":[5,0,1,85],
-"share_8php.html#afeb26046bdd02567ecd29ab5f188b249":[5,0,1,85,0],
-"siteinfo_8php.html":[5,0,1,86],
-"siteinfo_8php.html#a3efbd0bd6564af19ec0a9ce0294e59d0":[5,0,1,86,1],
-"siteinfo_8php.html#a70c09bfb6dd1c86a125a35f62ed53656":[5,0,1,86,0],
-"sitelist_8php.html":[5,0,1,87],
-"sitelist_8php.html#a665a59bf60f780b40f32c909f4a473b1":[5,0,1,87,0],
-"smilies_8php.html":[5,0,1,88],
-"smilies_8php.html#ab43b1e9f33a700a830aff14c7b3a617f":[5,0,1,88,0],
+"settings_8php.html":[5,0,1,84],
+"settings_8php.html#a39abc76ff5459c57e3b957664f273f18":[5,0,1,84,0],
+"settings_8php.html#a3a4cde287482fced008583f54ba2a722":[5,0,1,84,2],
+"settings_8php.html#aa7ee94d88ac088edb04ccf3a26de3586":[5,0,1,84,3],
+"settings_8php.html#ae5aebccb006bee1300078576baaf5582":[5,0,1,84,1],
+"setup_8php.html":[5,0,1,85],
+"setup_8php.html#a0c3f3b671381f6dccd924b8ecdfc56c4":[5,0,1,85,2],
+"setup_8php.html#a13cf286774149a0a7bd8adb8179cec75":[5,0,1,85,13],
+"setup_8php.html#a14d208682a88632290c895d20da6e7d6":[5,0,1,85,5],
+"setup_8php.html#a267555abd17290e659b4bf44b885e4e0":[5,0,1,85,12],
+"setup_8php.html#a2b375ddc555140236fc500135de99371":[5,0,1,85,9],
+"setup_8php.html#a5ad92c0857d1dadd6b60a9a557159c9f":[5,0,1,85,3],
+"setup_8php.html#a69a450e06dd3771fb51d3e4b0266a35e":[5,0,1,85,1],
+"setup_8php.html#a8652788e8589778c5f81634a9d5b9429":[5,0,1,85,7],
+"setup_8php.html#a88247384a96e14516f474d7af6a465c1":[5,0,1,85,11],
+"setup_8php.html#aa3bbb111780da70ba35cc23a306f2c76":[5,0,1,85,4],
+"setup_8php.html#abe405d227ba7232971964a706d4f3bce":[5,0,1,85,10],
+"setup_8php.html#ad2e0375a9ab87ebe6e78124ee125054a":[5,0,1,85,8],
+"setup_8php.html#addb24714bc2542aa4f4215e98fe48432":[5,0,1,85,15],
+"setup_8php.html#ae8e4d9279a61de74d5f39962cb7b6ca1":[5,0,1,85,0],
+"setup_8php.html#aea1ebdda58ec938f4e7b31aa5c5f6b58":[5,0,1,85,14],
+"setup_8php.html#afd8b0b3ade1507c45325caf377bf459d":[5,0,1,85,6],
+"share_8php.html":[5,0,1,86],
+"share_8php.html#afeb26046bdd02567ecd29ab5f188b249":[5,0,1,86,0],
+"siteinfo_8php.html":[5,0,1,87],
+"siteinfo_8php.html#a3efbd0bd6564af19ec0a9ce0294e59d0":[5,0,1,87,1],
+"siteinfo_8php.html#a70c09bfb6dd1c86a125a35f62ed53656":[5,0,1,87,0],
+"sitelist_8php.html":[5,0,1,88],
+"sitelist_8php.html#a665a59bf60f780b40f32c909f4a473b1":[5,0,1,88,0],
+"smilies_8php.html":[5,0,1,89],
+"smilies_8php.html#ab43b1e9f33a700a830aff14c7b3a617f":[5,0,1,89,0],
"socgraph_8php.html":[5,0,0,62],
"socgraph_8php.html#a16ac51c505d72987ed8d6d6aed0e8586":[5,0,0,62,0],
"socgraph_8php.html#a5ef8bef37161df53718a21e93d02fbd6":[5,0,0,62,6],
@@ -80,21 +86,21 @@ var NAVTREEINDEX6 =
"socgraph_8php.html#ac343a846241d36cdf046b08f3396cfe9":[5,0,0,62,2],
"socgraph_8php.html#af175807406d94407a5e11742a3287746":[5,0,0,62,5],
"socgraph_8php.html#af29d056beec10b4e38e5209c92452894":[5,0,0,62,3],
-"starred_8php.html":[5,0,1,89],
-"starred_8php.html#a63024fb418c678e49fd535e3752d349a":[5,0,1,89,0],
-"subthread_8php.html":[5,0,1,90],
-"subthread_8php.html#a50368f3d825b77996030528e7fbfa3d3":[5,0,1,90,0],
-"suggest_8php.html":[5,0,1,91],
-"suggest_8php.html#a4df91c84594d51ba56b5918de414230d":[5,0,1,91,0],
-"suggest_8php.html#a58748a8235d4523f8333847f3e42dd91":[5,0,1,91,1],
-"suggest_8php.html#a696acf1dd8070e479adcc80c63c6718c":[5,0,1,91,2],
+"starred_8php.html":[5,0,1,90],
+"starred_8php.html#a63024fb418c678e49fd535e3752d349a":[5,0,1,90,0],
+"subthread_8php.html":[5,0,1,91],
+"subthread_8php.html#a50368f3d825b77996030528e7fbfa3d3":[5,0,1,91,0],
+"suggest_8php.html":[5,0,1,92],
+"suggest_8php.html#a4df91c84594d51ba56b5918de414230d":[5,0,1,92,0],
+"suggest_8php.html#a58748a8235d4523f8333847f3e42dd91":[5,0,1,92,1],
+"suggest_8php.html#a696acf1dd8070e479adcc80c63c6718c":[5,0,1,92,2],
"system__unavailable_8php.html":[5,0,0,63],
"system__unavailable_8php.html#a73751a6bcc17ad3ca503496e2fb020fa":[5,0,0,63,0],
-"tagger_8php.html":[5,0,1,92],
-"tagger_8php.html#a0e4a3eb177d1684553c547503d67161c":[5,0,1,92,0],
-"tagrm_8php.html":[5,0,1,93],
-"tagrm_8php.html#a1702f40aa53a2fa93deade1f609abe78":[5,0,1,93,1],
-"tagrm_8php.html#adfd4ea5b4d7fc6d9c9e042af5cd7d49a":[5,0,1,93,0],
+"tagger_8php.html":[5,0,1,93],
+"tagger_8php.html#a0e4a3eb177d1684553c547503d67161c":[5,0,1,93,0],
+"tagrm_8php.html":[5,0,1,94],
+"tagrm_8php.html#a1702f40aa53a2fa93deade1f609abe78":[5,0,1,94,1],
+"tagrm_8php.html#adfd4ea5b4d7fc6d9c9e042af5cd7d49a":[5,0,1,94,0],
"taxonomy_8php.html":[5,0,0,64],
"taxonomy_8php.html#a03f55ee46c5f496e42f3d29db8d09cce":[5,0,0,64,6],
"taxonomy_8php.html#a061b3db9426d4b074395f5824062cad4":[5,0,0,64,8],
@@ -195,11 +201,11 @@ var NAVTREEINDEX6 =
"theme_2redstrap_2php_2default_8php.html":[5,0,3,1,1,0,1],
"theme_2redstrap_2php_2default_8php.html#a23bc1996b18e69c1a3ab44536613a762":[5,0,3,1,1,0,1,0],
"theme_2redstrap_2php_2theme__init_8php.html":[5,0,3,1,1,0,4],
-"thing_8php.html":[5,0,1,94],
-"thing_8php.html#a24a35f1e64029a67fdbea94a776ae04b":[5,0,1,94,0],
-"thing_8php.html#a8be23b1d475ec3d9291999221c674c80":[5,0,1,94,1],
-"toggle__mobile_8php.html":[5,0,1,95],
-"toggle__mobile_8php.html#aca53ade8971802b45c31e722b22c6254":[5,0,1,95,0],
+"thing_8php.html":[5,0,1,95],
+"thing_8php.html#a24a35f1e64029a67fdbea94a776ae04b":[5,0,1,95,0],
+"thing_8php.html#a8be23b1d475ec3d9291999221c674c80":[5,0,1,95,1],
+"toggle__mobile_8php.html":[5,0,1,96],
+"toggle__mobile_8php.html#aca53ade8971802b45c31e722b22c6254":[5,0,1,96,0],
"tpldebug_8php.html":[5,0,2,7],
"tpldebug_8php.html#a44778457a6c02554812fbfad19d32ba3":[5,0,2,7,0],
"tpldebug_8php.html#a5358407d65f2ca826f96356a6642d149":[5,0,2,7,1],
@@ -213,18 +219,18 @@ var NAVTREEINDEX6 =
"typohelper_8php.html":[5,0,2,9],
"typohelper_8php.html#a7542d95618011800c61773127fa625cf":[5,0,2,9,0],
"typohelper_8php.html#ab6fd357fb5b2a3ba8aab9e8b98c6a805":[5,0,2,9,1],
-"uexport_8php.html":[5,0,1,96],
-"uexport_8php.html#a118920137dedebe0581623a2e57e7b0d":[5,0,1,96,0],
-"update__channel_8php.html":[5,0,1,97],
-"update__channel_8php.html#aca52a9da500f0db2f0a8666af5bc06ba":[5,0,1,97,0],
-"update__community_8php.html":[5,0,1,98],
-"update__community_8php.html#abdcc5c4ecebbe0b5fcba2755c69cb3b1":[5,0,1,98,0],
-"update__display_8php.html":[5,0,1,99],
-"update__display_8php.html#aa36ac524059e209d5d75a03c16206246":[5,0,1,99,0],
-"update__network_8php.html":[5,0,1,100],
-"update__network_8php.html#a8abf5b9f65af6a27ee2f9d7207ed1b41":[5,0,1,100,0],
-"update__search_8php.html":[5,0,1,101],
-"update__search_8php.html#ace4c3a23fa7d6922399e27c297a6ba52":[5,0,1,101,0],
+"uexport_8php.html":[5,0,1,97],
+"uexport_8php.html#a118920137dedebe0581623a2e57e7b0d":[5,0,1,97,0],
+"update__channel_8php.html":[5,0,1,98],
+"update__channel_8php.html#aca52a9da500f0db2f0a8666af5bc06ba":[5,0,1,98,0],
+"update__community_8php.html":[5,0,1,99],
+"update__community_8php.html#abdcc5c4ecebbe0b5fcba2755c69cb3b1":[5,0,1,99,0],
+"update__display_8php.html":[5,0,1,100],
+"update__display_8php.html#aa36ac524059e209d5d75a03c16206246":[5,0,1,100,0],
+"update__network_8php.html":[5,0,1,101],
+"update__network_8php.html#a8abf5b9f65af6a27ee2f9d7207ed1b41":[5,0,1,101,0],
+"update__search_8php.html":[5,0,1,102],
+"update__search_8php.html#ace4c3a23fa7d6922399e27c297a6ba52":[5,0,1,102,0],
"updatetpl_8py.html":[5,0,2,10],
"updatetpl_8py.html#a52a85ffa6b6d63d840b185a133478c12":[5,0,2,10,5],
"updatetpl_8py.html#a79c20eb62d568c999b56eb08530355d3":[5,0,2,10,2],
@@ -240,14 +246,8 @@ var NAVTREEINDEX6 =
"view_2theme_2redstrap_2php_2config_8php.html#aa7d5739b72efef9822535b2b32d5364d":[5,0,3,1,1,0,0,1],
"view_2theme_2redstrap_2php_2config_8php.html#ad29461920cf03b9ce1428e21eb1f4ba6":[5,0,3,1,1,0,0,2],
"view_2theme_2redstrap_2php_2config_8php.html#af58e97b437c1e98a5e434886494cc70e":[5,0,3,1,1,0,0,0],
-"view_8php.html":[5,0,1,102],
-"view_8php.html#ac168f6c61a91ba2063f13b441c0ae96e":[5,0,1,102,0],
-"viewconnections_8php.html":[5,0,1,103],
-"viewconnections_8php.html#a00163d50b17568f7b0e48b1ca9ab7330":[5,0,1,103,2],
-"viewconnections_8php.html#ab6c4d983e97b3a8a879567ff76507776":[5,0,1,103,1],
-"viewconnections_8php.html#ae330cea4cddd091559659f8b469617b6":[5,0,1,103,0],
-"viewsrc_8php.html":[5,0,1,104],
-"viewsrc_8php.html#a6eff3d0c1d7d14b335c4edb785cd60a4":[5,0,1,104,0],
-"wall__attach_8php.html":[5,0,1,105],
-"wall__attach_8php.html#a7385e970e93228d082f0fd7254f6e653":[5,0,1,105,0]
+"view_8php.html":[5,0,1,103],
+"view_8php.html#ac168f6c61a91ba2063f13b441c0ae96e":[5,0,1,103,0],
+"viewconnections_8php.html":[5,0,1,104],
+"viewconnections_8php.html#a00163d50b17568f7b0e48b1ca9ab7330":[5,0,1,104,2]
};
diff --git a/doc/html/navtreeindex7.js b/doc/html/navtreeindex7.js
index 622c205b8..374967c34 100644
--- a/doc/html/navtreeindex7.js
+++ b/doc/html/navtreeindex7.js
@@ -1,19 +1,25 @@
var NAVTREEINDEX7 =
{
-"wall__upload_8php.html":[5,0,1,106],
-"wall__upload_8php.html#a7cbe204244cf9e0380ee932263a74d8f":[5,0,1,106,0],
-"webfinger_8php.html":[5,0,1,107],
-"webfinger_8php.html#a17dd28db6d390194bf9ecb809739d1d3":[5,0,1,107,0],
-"webpages_8php.html":[5,0,1,108],
-"webpages_8php.html#af3b7397d4abc153e3d2147740ee1a41d":[5,0,1,108,0],
-"wfinger_8php.html":[5,0,1,109],
-"wfinger_8php.html#ae21e50c8d0a5f3c9be9f43a4e519acd3":[5,0,1,109,0],
-"xchan_8php.html":[5,0,1,110],
-"xchan_8php.html#a9853348bf1a35c644460221ba75edc2d":[5,0,1,110,0],
-"xrd_8php.html":[5,0,1,111],
-"xrd_8php.html#aee3cf087968e4a0ff3a87de16eb23270":[5,0,1,111,0],
-"zfinger_8php.html":[5,0,1,112],
-"zfinger_8php.html#a8139b83a22ef98869adc10aa224027a0":[5,0,1,112,0],
+"viewconnections_8php.html#ab6c4d983e97b3a8a879567ff76507776":[5,0,1,104,1],
+"viewconnections_8php.html#ae330cea4cddd091559659f8b469617b6":[5,0,1,104,0],
+"viewsrc_8php.html":[5,0,1,105],
+"viewsrc_8php.html#a6eff3d0c1d7d14b335c4edb785cd60a4":[5,0,1,105,0],
+"wall__attach_8php.html":[5,0,1,106],
+"wall__attach_8php.html#a7385e970e93228d082f0fd7254f6e653":[5,0,1,106,0],
+"wall__upload_8php.html":[5,0,1,107],
+"wall__upload_8php.html#a7cbe204244cf9e0380ee932263a74d8f":[5,0,1,107,0],
+"webfinger_8php.html":[5,0,1,108],
+"webfinger_8php.html#a17dd28db6d390194bf9ecb809739d1d3":[5,0,1,108,0],
+"webpages_8php.html":[5,0,1,109],
+"webpages_8php.html#af3b7397d4abc153e3d2147740ee1a41d":[5,0,1,109,0],
+"wfinger_8php.html":[5,0,1,110],
+"wfinger_8php.html#ae21e50c8d0a5f3c9be9f43a4e519acd3":[5,0,1,110,0],
+"xchan_8php.html":[5,0,1,111],
+"xchan_8php.html#a9853348bf1a35c644460221ba75edc2d":[5,0,1,111,0],
+"xrd_8php.html":[5,0,1,112],
+"xrd_8php.html#aee3cf087968e4a0ff3a87de16eb23270":[5,0,1,112,0],
+"zfinger_8php.html":[5,0,1,113],
+"zfinger_8php.html#a8139b83a22ef98869adc10aa224027a0":[5,0,1,113,0],
"zot_8php.html":[5,0,0,67],
"zot_8php.html#a083aec6c900d244e1bfc1406f9461465":[5,0,0,67,11],
"zot_8php.html#a22e3f9b97b7969ddbe43ccf0db93a19c":[5,0,0,67,20],
@@ -41,6 +47,6 @@ var NAVTREEINDEX7 =
"zot_8php.html#ac34e479d27f32b82dd6b33542f81a6a7":[5,0,0,67,1],
"zot_8php.html#acdea9362d78a63dce948fdf0ea73ef0e":[5,0,0,67,18],
"zot_8php.html#adfeb9400ae6b726beec89f8f1e8fde72":[5,0,0,67,2],
-"zotfeed_8php.html":[5,0,1,113],
-"zotfeed_8php.html#a24dfc23d366e7f840cf2847d0c1c8eac":[5,0,1,113,0]
+"zotfeed_8php.html":[5,0,1,114],
+"zotfeed_8php.html#a24dfc23d366e7f840cf2847d0c1c8eac":[5,0,1,114,0]
};
diff --git a/doc/html/permissions_8php.html b/doc/html/permissions_8php.html
index 9e0fc20d4..795dcf39e 100644
--- a/doc/html/permissions_8php.html
+++ b/doc/html/permissions_8php.html
@@ -120,6 +120,8 @@ Functions
|
| check_list_permissions ($uid, $arr, $perm) |
|
+ | site_default_perms () |
+ |
@@ -212,7 +214,7 @@ Functions
-
Referenced by connections_content(), get_all_perms(), message_post(), new_contact(), perm_is_allowed(), and zot_refresh().
+
Referenced by connections_content(), create_identity(), get_all_perms(), message_post(), new_contact(), perm_is_allowed(), site_default_perms(), and zot_refresh().
@@ -246,7 +248,24 @@ Functions
-
Referenced by api_statuses_home_timeline(), api_statuses_repeat(), attach_by_hash(), attach_by_hash_nodata(), attach_count_files(), attach_list_files(), attach_store(), check_list_permissions(), common_content(), common_friends_visitor_widget(), get_feed_for(), item_post(), like_content(), photo_init(), photo_upload(), photos_album_widget(), photos_albums_list(), photos_list_photos(), photos_post(), poco_init(), post_activity_item(), process_delivery(), process_mail_delivery(), profile_load(), profile_sidebar(), Conversation\set_mode(), subthread_content(), syncdirs(), tag_deliver(), tgroup_check(), viewconnections_content(), z_readdir(), and zot_feed().
+
Referenced by api_statuses_home_timeline(), api_statuses_repeat(), attach_by_hash(), attach_by_hash_nodata(), attach_count_files(), attach_list_files(), attach_store(), check_list_permissions(), common_content(), common_friends_visitor_widget(), get_feed_for(), item_post(), like_content(), photo_init(), photo_upload(), photos_album_widget(), photos_albums_list(), photos_list_photos(), photos_post(), poco_init(), post_activity_item(), process_delivery(), process_mail_delivery(), profile_load(), profile_sidebar(), Conversation\set_mode(), subthread_content(), syncdirs(), tag_deliver(), tgroup_check(), viewconnections_content(), z_readdir(), and zot_feed().
+
+
+
+
+
+
+
+
+ site_default_perms |
+ ( |
+ | ) |
+ |
+
+
+
diff --git a/doc/html/permissions_8php.js b/doc/html/permissions_8php.js
index a05203458..49747cfd8 100644
--- a/doc/html/permissions_8php.js
+++ b/doc/html/permissions_8php.js
@@ -3,5 +3,6 @@ var permissions_8php =
[ "check_list_permissions", "permissions_8php.html#a0f5bd9f7f4c8fb7ba4b2c1ed048b4dc7", null ],
[ "get_all_perms", "permissions_8php.html#aeca9b280f3dc3358c89976d81d690008", null ],
[ "get_perms", "permissions_8php.html#a040fd3d3b8517658b1668ae0cd093972", null ],
- [ "perm_is_allowed", "permissions_8php.html#a67ada9ed51e77885b6b0f6a28cee1835", null ]
+ [ "perm_is_allowed", "permissions_8php.html#a67ada9ed51e77885b6b0f6a28cee1835", null ],
+ [ "site_default_perms", "permissions_8php.html#aa8b7b102c653649d7a71b5a1c044d90d", null ]
];
\ No newline at end of file
diff --git a/doc/html/php2po_8php.html b/doc/html/php2po_8php.html
index ab6a8167a..e0c1ec29e 100644
--- a/doc/html/php2po_8php.html
+++ b/doc/html/php2po_8php.html
@@ -168,7 +168,7 @@ Variables
-
Referenced by App\__construct(), Template\_get_var(), Template\_replcb_for(), activity_sanitise(), advanced_profile(), aes_encapsulate(), aes_unencapsulate(), build_sync_packet(), connections_content(), connections_post(), contact_poll_interval(), contact_reputation(), get_plugin_info(), get_theme_info(), guess_image_type(), import_directory_profile(), item_photo_menu(), item_store_update(), load_config(), load_pconfig(), load_xconfig(), message_post(), mood_content(), network_init(), new_contact(), FKOAuthDataStore\new_request_token(), obj_verb_selector(), photos_albums_list(), po2php_run(), poco_init(), poke_content(), private_messages_fetch_conversation(), private_messages_fetch_message(), private_messages_list(), process_channel_sync_delivery(), requestdata(), App\set_widget(), settings_post(), startup(), syncdirs(), tt(), x(), zfinger_init(), and zot_refresh().
+
Referenced by App\__construct(), Template\_get_var(), Template\_replcb_for(), activity_sanitise(), advanced_profile(), aes_encapsulate(), aes_unencapsulate(), build_sync_packet(), connections_content(), connections_post(), contact_poll_interval(), contact_reputation(), get_plugin_info(), get_theme_info(), guess_image_type(), import_directory_profile(), item_photo_menu(), item_store_update(), load_config(), load_pconfig(), load_xconfig(), message_post(), mood_content(), network_init(), new_contact(), FKOAuthDataStore\new_request_token(), obj_verb_selector(), photos_albums_list(), po2php_run(), poco_init(), poke_content(), private_messages_fetch_conversation(), private_messages_fetch_message(), private_messages_list(), process_channel_sync_delivery(), requestdata(), App\set_widget(), settings_post(), startup(), syncdirs(), tt(), x(), zfinger_init(), and zot_refresh().
diff --git a/doc/html/plugin_8php.html b/doc/html/plugin_8php.html
index 59d637f3a..a02505013 100644
--- a/doc/html/plugin_8php.html
+++ b/doc/html/plugin_8php.html
@@ -190,7 +190,7 @@ Functions
-
Referenced by api_login(), atom_author(), atom_entry(), authenticate_success(), avatar_img(), bb2diaspora(), bbcode(), channel_remove(), check_account_email(), check_account_invite(), check_account_password(), connections_content(), connections_post(), contact_block(), contact_select(), conversation(), create_identity(), cronhooks_run(), directory_content(), editpost_content(), editwebpage_content(), event_store(), feature_enabled(), gender_selector(), get_all_perms(), get_atom_elements(), get_features(), get_feed_for(), get_mood_verbs(), get_perms(), get_poke_verbs(), Item\get_template_data(), App\get_widgets(), group_select(), html2bbcode(), import_directory_profile(), item_photo_menu(), item_post(), item_store(), item_store_update(), like_content(), login(), FKOAuth1\loginUser(), magic_init(), mail_store(), marital_selector(), mood_init(), nav(), network_content(), network_to_name(), new_contact(), notification(), notifier_run(), obj_verbs(), oembed_fetch_url(), parse_url_content(), perm_is_allowed(), photo_upload(), photos_content(), ping_init(), post_activity_item(), post_init(), prepare_body(), proc_run(), profile_content(), profile_sidebar(), profile_tabs(), profiles_content(), profiles_post(), settings_post(), sexpref_selector(), siteinfo_content(), smilies(), subthread_content(), validate_channelname(), wfinger_init(), xrd_init(), zid(), and zid_init().
+
Referenced by api_login(), atom_author(), atom_entry(), authenticate_success(), avatar_img(), bb2diaspora(), bbcode(), channel_remove(), check_account_email(), check_account_invite(), check_account_password(), connect_content(), connections_content(), connections_post(), contact_block(), contact_select(), conversation(), create_identity(), cronhooks_run(), directory_content(), editpost_content(), editwebpage_content(), event_store(), feature_enabled(), gender_selector(), get_all_perms(), get_atom_elements(), get_features(), get_feed_for(), get_mood_verbs(), get_perms(), get_poke_verbs(), Item\get_template_data(), App\get_widgets(), group_select(), html2bbcode(), import_directory_profile(), item_photo_menu(), item_post(), item_store(), item_store_update(), like_content(), login(), FKOAuth1\loginUser(), magic_init(), mail_store(), marital_selector(), mood_init(), nav(), network_content(), network_to_name(), new_contact(), notification(), notifier_run(), obj_verbs(), oembed_fetch_url(), parse_url_content(), perm_is_allowed(), photo_upload(), photos_content(), ping_init(), post_activity_item(), post_init(), prepare_body(), proc_run(), profile_content(), profile_sidebar(), profile_tabs(), profiles_content(), profiles_post(), settings_post(), sexpref_selector(), siteinfo_content(), smilies(), subthread_content(), validate_channelname(), wfinger_init(), xrd_init(), zid(), and zid_init().
@@ -282,7 +282,7 @@ Functions
-
Referenced by admin_content(), admin_page_dbsync(), admin_page_logs(), admin_page_plugins(), admin_page_site(), admin_page_summary(), admin_page_themes(), admin_page_users(), advanced_profile(), allfriends_content(), alt_pager(), api_apply_template(), api_content(), apps_content(), App\build_pagehead(), categories_widget(), channel_content(), chanview_content(), check_php(), common_content(), common_friends_visitor_widget(), connections_content(), construct_page(), contact_block(), conversation(), crepair_content(), delegate_content(), directory_content(), dirfind_content(), display_content(), editpost_content(), editwebpage_content(), events_content(), fbrowser_content(), field_timezone(), fileas_widget(), filer_content(), findpeople_widget(), follow_widget(), get_birthdays(), Item\get_comment_box(), get_events(), get_feed_for(), group_content(), group_side(), help_content(), hostxrd_init(), import_content(), intro_content(), invite_content(), lang_selector(), lastpost_content(), login(), lostpass_content(), manage_content(), match_content(), menu_content(), menu_render(), message_aside(), message_content(), micropro(), mini_group_select(), mitem_content(), mood_content(), nav(), network_content(), new_channel_content(), nogroup_content(), notification(), notifications_content(), notify_content(), oembed_format_object(), oexchange_init(), opensearch_init(), pagelist_widget(), photos_album_widget(), photos_content(), poco_init(), poke_content(), populate_acl(), posted_date_widget(), profile_sidebar(), profile_tabs(), profiles_content(), redbasic_form(), register_content(), removeme_content(), rmagic_content(), saved_searches(), search_content(), settings_aside(), setup_content(), siteinfo_content(), suggest_content(), thing_content(), vcard_from_xchan(), viewconnections_content(), webpages_content(), writepages_widget(), and xrd_init().
+
Referenced by admin_content(), admin_page_dbsync(), admin_page_logs(), admin_page_plugins(), admin_page_site(), admin_page_summary(), admin_page_themes(), admin_page_users(), advanced_profile(), allfriends_content(), alt_pager(), api_apply_template(), api_content(), apps_content(), App\build_pagehead(), categories_widget(), channel_content(), chanview_content(), check_php(), common_content(), common_friends_visitor_widget(), connect_content(), connections_content(), construct_page(), contact_block(), conversation(), crepair_content(), delegate_content(), directory_content(), dirfind_content(), display_content(), editpost_content(), editwebpage_content(), events_content(), fbrowser_content(), field_timezone(), fileas_widget(), filer_content(), findpeople_widget(), follow_widget(), get_birthdays(), Item\get_comment_box(), get_events(), get_feed_for(), group_content(), group_side(), help_content(), hostxrd_init(), import_content(), intro_content(), invite_content(), lang_selector(), lastpost_content(), login(), lostpass_content(), manage_content(), match_content(), menu_content(), menu_render(), message_aside(), message_content(), micropro(), mini_group_select(), mitem_content(), mood_content(), nav(), network_content(), new_channel_content(), nogroup_content(), notification(), notifications_content(), notify_content(), oembed_format_object(), oexchange_init(), opensearch_init(), pagelist_widget(), photos_album_widget(), photos_content(), poco_init(), poke_content(), populate_acl(), posted_date_widget(), profile_sidebar(), profile_tabs(), profiles_content(), redbasic_form(), register_content(), removeme_content(), rmagic_content(), saved_searches(), search_content(), settings_aside(), setup_content(), siteinfo_content(), suggest_content(), thing_content(), vcard_from_xchan(), viewconnections_content(), webpages_content(), writepages_widget(), and xrd_init().
@@ -558,7 +558,7 @@ Functions
@@ -734,7 +734,7 @@ Functions
diff --git a/doc/html/redbasic_2php_2style_8php.html b/doc/html/redbasic_2php_2style_8php.html
index d8fdb6b9a..a636a96f7 100644
--- a/doc/html/redbasic_2php_2style_8php.html
+++ b/doc/html/redbasic_2php_2style_8php.html
@@ -386,7 +386,7 @@ Variables
-
Referenced by admin_page_users(), admin_page_users_post(), all_friends(), build_sync_packet(), check_list_permissions(), common_friends(), common_friends_zcid(), contacts_not_grouped(), count_all_friends(), count_common_friends(), count_common_friends_zcid(), current_theme_url(), del_pconfig(), delete_imported_item(), drop_items(), events_post(), feature_enabled(), first_post_date(), fix_attached_photo_permissions(), fix_private_photos(), follow_init(), get_all_perms(), get_pconfig(), get_theme_uid(), group_add(), group_add_member(), group_byname(), group_rec_byhash(), group_rmv(), group_rmv_member(), groups_containing(), import_channel_photo(), item_expire(), item_post(), item_store_update(), items_fetch(), load_contact_links(), load_pconfig(), FKOAuth1\loginUser(), menu_add_item(), menu_del_item(), menu_delete(), menu_delete_id(), menu_edit_item(), menu_fetch(), mini_group_select(), mood_init(), new_contact(), notifier_run(), perm_is_allowed(), photo_init(), poke_init(), posted_date_widget(), posted_dates(), private_messages_list(), remove_community_tag(), send_message(), service_class_allows(), service_class_fetch(), set_pconfig(), Conversation\set_profile_owner(), photo_driver\store(), store_item_tag(), suggestion_query(), syncdirs(), tag_deliver(), tagadelic(), tagblock(), tgroup_check(), and zot_feed().
+
Referenced by admin_page_users(), admin_page_users_post(), all_friends(), build_sync_packet(), check_list_permissions(), common_friends(), common_friends_zcid(), contacts_not_grouped(), count_all_friends(), count_common_friends(), count_common_friends_zcid(), current_theme_url(), del_pconfig(), delete_imported_item(), drop_items(), events_post(), feature_enabled(), first_post_date(), fix_attached_photo_permissions(), fix_private_photos(), follow_init(), get_all_perms(), get_pconfig(), get_theme_uid(), group_add(), group_add_member(), group_byname(), group_rec_byhash(), group_rmv(), group_rmv_member(), groups_containing(), import_channel_photo(), item_expire(), item_post(), item_store_update(), items_fetch(), load_contact_links(), load_pconfig(), FKOAuth1\loginUser(), menu_add_item(), menu_del_item(), menu_delete(), menu_delete_id(), menu_edit_item(), menu_fetch(), mini_group_select(), mood_init(), new_contact(), notifier_run(), perm_is_allowed(), photo_init(), poke_init(), posted_date_widget(), posted_dates(), private_messages_list(), remove_community_tag(), send_message(), service_class_allows(), service_class_fetch(), set_pconfig(), Conversation\set_profile_owner(), photo_driver\store(), store_item_tag(), suggestion_query(), syncdirs(), tag_deliver(), tagadelic(), tagblock(), tgroup_check(), and zot_feed().
@@ -400,7 +400,7 @@ Variables
-
Referenced by Template\_replcb_for(), Template\_replcb_if(), account_remove(), acl_init(), activity_sanitise(), admin_page_themes(), aes_encapsulate(), argv(), array_sanitise(), attach_store(), autoname(), build_sync_packet(), change_channel(), channel_content(), check_config(), check_form_security_token(), check_list_permissions(), check_webbie(), common_init(), construct_page(), conversation(), crepair_post(), photo_gd\cropImage(), photo_imagick\cropImage(), datesel(), datesel_format(), decode_tags(), deliver_run(), directory_content(), directory_run(), dirfind_content(), display_content(), email_header_encode(), encode_item(), encode_mail(), event_store(), expand_groups(), feature_enabled(), fetch_post_tags(), find_xchan_in_array(), findpeople_widget(), fix_private_photos(), fix_system_urls(), photo_gd\flip(), fsuggest_post(), generate_user_guid(), get_all_perms(), get_item_elements(), get_mail_elements(), get_mentions(), get_profile_elements(), get_terms_oftype(), gprobe_run(), ids_to_querystr(), import_author_xchan(), import_directory_keywords(), import_directory_profile(), import_post(), import_xchan(), invite_content(), invite_post(), item_post(), json_decode_plus(), json_return_and_die(), lastpost_content(), legal_webbie(), lrdd(), magic_init(), manage_content(), match_content(), menu_content(), menu_delete_id(), menu_fetch(), menu_render(), message_post(), navbar_complete(), network_content(), network_init(), new_channel_init(), new_contact(), notification(), notifier_run(), oembed_fetch_url(), onepoll_run(), parse_xml_string(), perm_is_allowed(), photos_post(), ping_init(), poco_load(), poller_run(), post_init(), post_post(), preg_heart(), prepare_body(), print_template(), private_messages_list(), proc_run(), process_mail_delivery(), profile_init(), profile_load(), profile_photo_post(), public_recips(), dba_mysql\q(), dba_mysqli\q(), randprof_init(), remove_community_tag(), photo_driver\save(), search_ac_init(), send_status_notifications(), App\set_widget(), smilies(), photo_driver\store(), stringify_array_elms(), sync_directories(), tag_deliver(), tagadelic(), tagrm_content(), tagrm_post(), theme_status(), timesel(), toggle_theme(), upgrade_bool_message(), upgrade_message(), valid_email(), webpages_content(), xchan_query(), xmlify(), zfinger_init(), zot_process_response(), zot_refresh(), and zot_register_hub().
+
Referenced by Template\_replcb_for(), Template\_replcb_if(), account_remove(), acl_init(), activity_sanitise(), admin_page_themes(), aes_encapsulate(), argv(), array_sanitise(), attach_store(), autoname(), build_sync_packet(), change_channel(), channel_content(), check_config(), check_form_security_token(), check_list_permissions(), check_webbie(), common_init(), construct_page(), conversation(), crepair_post(), photo_gd\cropImage(), photo_imagick\cropImage(), datesel(), datesel_format(), decode_tags(), deliver_run(), directory_content(), directory_run(), dirfind_content(), display_content(), email_header_encode(), encode_item(), encode_mail(), event_store(), expand_groups(), feature_enabled(), fetch_post_tags(), find_xchan_in_array(), findpeople_widget(), fix_private_photos(), fix_system_urls(), photo_gd\flip(), fsuggest_post(), generate_user_guid(), get_all_perms(), get_item_elements(), get_mail_elements(), get_mentions(), get_profile_elements(), get_terms_oftype(), gprobe_run(), ids_to_querystr(), import_author_xchan(), import_directory_keywords(), import_directory_profile(), import_post(), import_xchan(), invite_content(), invite_post(), item_post(), json_decode_plus(), json_return_and_die(), lastpost_content(), legal_webbie(), lrdd(), magic_init(), manage_content(), match_content(), menu_content(), menu_delete_id(), menu_fetch(), menu_render(), message_post(), navbar_complete(), network_content(), network_init(), new_channel_init(), new_contact(), notification(), notifier_run(), oembed_fetch_url(), onepoll_run(), parse_xml_string(), perm_is_allowed(), photos_post(), ping_init(), poco_load(), poller_run(), post_init(), post_post(), preg_heart(), prepare_body(), print_template(), private_messages_list(), proc_run(), process_mail_delivery(), profile_init(), profile_load(), profile_photo_post(), public_recips(), dba_mysql\q(), dba_mysqli\q(), randprof_init(), remove_community_tag(), photo_driver\save(), search_ac_init(), send_status_notifications(), App\set_widget(), site_default_perms(), smilies(), photo_driver\store(), stringify_array_elms(), sync_directories(), tag_deliver(), tagadelic(), tagrm_content(), tagrm_post(), theme_status(), timesel(), toggle_theme(), upgrade_bool_message(), upgrade_message(), valid_email(), webpages_content(), xchan_query(), xmlify(), zfinger_init(), zot_process_response(), zot_refresh(), and zot_register_hub().
diff --git a/doc/html/search/all_63.js b/doc/html/search/all_63.js
index 548f22635..ec3323a11 100644
--- a/doc/html/search/all_63.js
+++ b/doc/html/search/all_63.js
@@ -73,6 +73,10 @@ var searchData=
['config_2ephp',['config.php',['../include_2config_8php.html',1,'']]],
['config_2ephp',['config.php',['../view_2theme_2redbasic_2php_2config_8php.html',1,'']]],
['connect',['connect',['../classdba__driver.html#ae533e62a240a793f17aef5ab4ef10edc',1,'dba_driver\connect()'],['../classdba__mysql.html#a1887338627ce0e28786839363014bd0b',1,'dba_mysql\connect()'],['../classdba__mysqli.html#add062bd93961e5f0194d94820e9a51b1',1,'dba_mysqli\connect()']]],
+ ['connect_2ephp',['connect.php',['../connect_8php.html',1,'']]],
+ ['connect_5fcontent',['connect_content',['../connect_8php.html#a489f0a66c660de6ec4d6917b27674f07',1,'connect.php']]],
+ ['connect_5finit',['connect_init',['../connect_8php.html#ad46a38f32fd7a3d324b1fa26373efa36',1,'connect.php']]],
+ ['connect_5fpost',['connect_post',['../connect_8php.html#a417ec27afe33f21a929667a665e32ee2',1,'connect.php']]],
['connections_2ephp',['connections.php',['../connections_8php.html',1,'']]],
['connections_5faside',['connections_aside',['../connections_8php.html#af48f7ad20914760ba9874c090384e35a',1,'connections.php']]],
['connections_5fclone',['connections_clone',['../connections_8php.html#a15af118efee9c948b6f8294e54a73bb2',1,'connections.php']]],
diff --git a/doc/html/search/all_6e.js b/doc/html/search/all_6e.js
index 0b53b31f3..5fc653c57 100644
--- a/doc/html/search/all_6e.js
+++ b/doc/html/search/all_6e.js
@@ -46,7 +46,7 @@ var searchData=
['new_5fchannel_5fcontent',['new_channel_content',['../new__channel_8php.html#ae585191610f79da129492482ce8e2fee',1,'new_channel.php']]],
['new_5fchannel_5finit',['new_channel_init',['../new__channel_8php.html#a1ad7f99e4366a32942c6b954aba3a164',1,'new_channel.php']]],
['new_5fchannel_5fpost',['new_channel_post',['../new__channel_8php.html#a180b0646957db8290482f02454ad7f23',1,'new_channel.php']]],
- ['new_5fcontact',['new_contact',['../include_2follow_8php.html#a6553a7650fae55f95660510d90983144',1,'follow.php']]],
+ ['new_5fcontact',['new_contact',['../include_2follow_8php.html#ae387d4ae097c23d69f3247e7f08140c7',1,'follow.php']]],
['new_5fcookie',['new_cookie',['../session_8php.html#a4c0ead624f95483e386bc80abf570a8f',1,'session.php']]],
['new_5fkeypair',['new_keypair',['../crypto_8php.html#aae0ab70d6a199b29555b1ac3cf250d6a',1,'crypto.php']]],
['new_5frequest_5ftoken',['new_request_token',['../classFKOAuthDataStore.html#a431b44d70e3da6a8256ab38f710e3050',1,'FKOAuthDataStore']]],
diff --git a/doc/html/search/all_70.js b/doc/html/search/all_70.js
index 7a849e892..d4b358207 100644
--- a/doc/html/search/all_70.js
+++ b/doc/html/search/all_70.js
@@ -9,6 +9,7 @@ var searchData=
['page_5fhidden',['PAGE_HIDDEN',['../boot_8php.html#a5e322a2a2d0f51924c0b2e874988e640',1,'boot.php']]],
['page_5finit',['page_init',['../page_8php.html#a4d89800c0366a239191b1692c09635cf',1,'page.php']]],
['page_5fnormal',['PAGE_NORMAL',['../boot_8php.html#a09532c3f750ae8c4527e63b2b790cbf3',1,'boot.php']]],
+ ['page_5fpremium',['PAGE_PREMIUM',['../boot_8php.html#ab3920c2f3cd64802c0b7ff625c3b2ea8',1,'boot.php']]],
['page_5fremoved',['PAGE_REMOVED',['../boot_8php.html#a4edce16cb7f21cdafa1e85bf63d713e6',1,'boot.php']]],
['page_5fwidgets_2ephp',['page_widgets.php',['../page__widgets_8php.html',1,'']]],
['pagelist_5fwidget',['pagelist_widget',['../page__widgets_8php.html#ad82011c1ed90d9de8b9f34c12af5c6f0',1,'page_widgets.php']]],
@@ -124,7 +125,7 @@ var searchData=
['profile_5fadvanced_2ephp',['profile_advanced.php',['../profile__advanced_8php.html',1,'']]],
['profile_5faside',['profile_aside',['../profile_8php.html#a1a2482b775476f2f64ea5e8f4fc3fd1e',1,'profile.php']]],
['profile_5fcontent',['profile_content',['../profile_8php.html#a3775cf6eef6587e5143133356a7b76c0',1,'profile.php']]],
- ['profile_5fcreate_5fsidebar',['profile_create_sidebar',['../boot_8php.html#a5b45d647da3743a7fc8c6223350b4d67',1,'boot.php']]],
+ ['profile_5fcreate_5fsidebar',['profile_create_sidebar',['../boot_8php.html#ad4a2c8caca8f6ae93633ebeca0ed6620',1,'boot.php']]],
['profile_5finit',['profile_init',['../profile_8php.html#ab5d0246be0552e2182a585c1206d22a5',1,'profile.php']]],
['profile_5fload',['profile_load',['../boot_8php.html#a4751b522ea913d0e7ed43e03d22e9e68',1,'boot.php']]],
['profile_5fphoto_2ephp',['profile_photo.php',['../profile__photo_8php.html',1,'']]],
@@ -132,7 +133,7 @@ var searchData=
['profile_5fphoto_5finit',['profile_photo_init',['../profile__photo_8php.html#a140631c56438fbfacb61a1eb43067d02',1,'profile_photo.php']]],
['profile_5fphoto_5fpost',['profile_photo_post',['../profile__photo_8php.html#a4b80234074bd603221aa5364f330e479',1,'profile_photo.php']]],
['profile_5fselectors_2ephp',['profile_selectors.php',['../profile__selectors_8php.html',1,'']]],
- ['profile_5fsidebar',['profile_sidebar',['../boot_8php.html#a646123ebbb10eb6f5b6ff26f4288da9b',1,'boot.php']]],
+ ['profile_5fsidebar',['profile_sidebar',['../boot_8php.html#a432259b2cf5b6f59be53e71db9f2c7dc',1,'boot.php']]],
['profile_5ftabs',['profile_tabs',['../boot_8php.html#a1dfcb5146e9d1eca4528bc580ad5d273',1,'boot.php']]],
['profiler',['profiler',['../text_8php.html#a8b0a799341b1fc4cba2c3ede3e3fc9b6',1,'text.php']]],
['profiles_2ephp',['profiles.php',['../profiles_8php.html',1,'']]],
diff --git a/doc/html/search/all_73.js b/doc/html/search/all_73.js
index c5992262e..b8c8f7800 100644
--- a/doc/html/search/all_73.js
+++ b/doc/html/search/all_73.js
@@ -64,6 +64,7 @@ var searchData=
['share_2ephp',['share.php',['../share_8php.html',1,'']]],
['share_5finit',['share_init',['../share_8php.html#afeb26046bdd02567ecd29ab5f188b249',1,'share.php']]],
['showform',['showForm',['../fpostit_8php.html#a3f3ae3ae61578b5671673914fd894443',1,'fpostit.php']]],
+ ['site_5fdefault_5fperms',['site_default_perms',['../permissions_8php.html#aa8b7b102c653649d7a71b5a1c044d90d',1,'permissions.php']]],
['siteinfo_2ephp',['siteinfo.php',['../siteinfo_8php.html',1,'']]],
['siteinfo_5fcontent',['siteinfo_content',['../siteinfo_8php.html#a70c09bfb6dd1c86a125a35f62ed53656',1,'siteinfo.php']]],
['siteinfo_5finit',['siteinfo_init',['../siteinfo_8php.html#a3efbd0bd6564af19ec0a9ce0294e59d0',1,'siteinfo.php']]],
diff --git a/doc/html/search/files_63.js b/doc/html/search/files_63.js
index 7c3df25dc..45806b907 100644
--- a/doc/html/search/files_63.js
+++ b/doc/html/search/files_63.js
@@ -11,6 +11,7 @@ var searchData=
['config_2ephp',['config.php',['../include_2config_8php.html',1,'']]],
['config_2ephp',['config.php',['../view_2theme_2redbasic_2php_2config_8php.html',1,'']]],
['config_2ephp',['config.php',['../view_2theme_2redstrap_2php_2config_8php.html',1,'']]],
+ ['connect_2ephp',['connect.php',['../connect_8php.html',1,'']]],
['connections_2ephp',['connections.php',['../connections_8php.html',1,'']]],
['contact_2ephp',['Contact.php',['../Contact_8php.html',1,'']]],
['contact_5fselectors_2ephp',['contact_selectors.php',['../contact__selectors_8php.html',1,'']]],
diff --git a/doc/html/search/functions_63.js b/doc/html/search/functions_63.js
index 536f97495..5d56e9a5f 100644
--- a/doc/html/search/functions_63.js
+++ b/doc/html/search/functions_63.js
@@ -58,6 +58,9 @@ var searchData=
['compare_5fpermissions',['compare_permissions',['../items_8php.html#a0790a4550b829e85504af548623002ca',1,'items.php']]],
['completeurl',['completeurl',['../parse__url_8php.html#a496f4e3836154f6f32b8e805a7160d3a',1,'parse_url.php']]],
['connect',['connect',['../classdba__driver.html#ae533e62a240a793f17aef5ab4ef10edc',1,'dba_driver\connect()'],['../classdba__mysql.html#a1887338627ce0e28786839363014bd0b',1,'dba_mysql\connect()'],['../classdba__mysqli.html#add062bd93961e5f0194d94820e9a51b1',1,'dba_mysqli\connect()']]],
+ ['connect_5fcontent',['connect_content',['../connect_8php.html#a489f0a66c660de6ec4d6917b27674f07',1,'connect.php']]],
+ ['connect_5finit',['connect_init',['../connect_8php.html#ad46a38f32fd7a3d324b1fa26373efa36',1,'connect.php']]],
+ ['connect_5fpost',['connect_post',['../connect_8php.html#a417ec27afe33f21a929667a665e32ee2',1,'connect.php']]],
['connections_5faside',['connections_aside',['../connections_8php.html#af48f7ad20914760ba9874c090384e35a',1,'connections.php']]],
['connections_5fclone',['connections_clone',['../connections_8php.html#a15af118efee9c948b6f8294e54a73bb2',1,'connections.php']]],
['connections_5fcontent',['connections_content',['../connections_8php.html#aec2e457420fce3e3bf6a9f48e36df25c',1,'connections.php']]],
diff --git a/doc/html/search/functions_6e.js b/doc/html/search/functions_6e.js
index ebcd30df0..6bdcef685 100644
--- a/doc/html/search/functions_6e.js
+++ b/doc/html/search/functions_6e.js
@@ -12,7 +12,7 @@ var searchData=
['new_5fchannel_5fcontent',['new_channel_content',['../new__channel_8php.html#ae585191610f79da129492482ce8e2fee',1,'new_channel.php']]],
['new_5fchannel_5finit',['new_channel_init',['../new__channel_8php.html#a1ad7f99e4366a32942c6b954aba3a164',1,'new_channel.php']]],
['new_5fchannel_5fpost',['new_channel_post',['../new__channel_8php.html#a180b0646957db8290482f02454ad7f23',1,'new_channel.php']]],
- ['new_5fcontact',['new_contact',['../include_2follow_8php.html#a6553a7650fae55f95660510d90983144',1,'follow.php']]],
+ ['new_5fcontact',['new_contact',['../include_2follow_8php.html#ae387d4ae097c23d69f3247e7f08140c7',1,'follow.php']]],
['new_5fcookie',['new_cookie',['../session_8php.html#a4c0ead624f95483e386bc80abf570a8f',1,'session.php']]],
['new_5fkeypair',['new_keypair',['../crypto_8php.html#aae0ab70d6a199b29555b1ac3cf250d6a',1,'crypto.php']]],
['new_5frequest_5ftoken',['new_request_token',['../classFKOAuthDataStore.html#a431b44d70e3da6a8256ab38f710e3050',1,'FKOAuthDataStore']]],
diff --git a/doc/html/search/functions_70.js b/doc/html/search/functions_70.js
index dd9bcd53f..82636bdb5 100644
--- a/doc/html/search/functions_70.js
+++ b/doc/html/search/functions_70.js
@@ -63,13 +63,13 @@ var searchData=
['profile_5factivity',['profile_activity',['../activities_8php.html#a80134e807719b3c54aba971958d2e132',1,'activities.php']]],
['profile_5faside',['profile_aside',['../profile_8php.html#a1a2482b775476f2f64ea5e8f4fc3fd1e',1,'profile.php']]],
['profile_5fcontent',['profile_content',['../profile_8php.html#a3775cf6eef6587e5143133356a7b76c0',1,'profile.php']]],
- ['profile_5fcreate_5fsidebar',['profile_create_sidebar',['../boot_8php.html#a5b45d647da3743a7fc8c6223350b4d67',1,'boot.php']]],
+ ['profile_5fcreate_5fsidebar',['profile_create_sidebar',['../boot_8php.html#ad4a2c8caca8f6ae93633ebeca0ed6620',1,'boot.php']]],
['profile_5finit',['profile_init',['../profile_8php.html#ab5d0246be0552e2182a585c1206d22a5',1,'profile.php']]],
['profile_5fload',['profile_load',['../boot_8php.html#a4751b522ea913d0e7ed43e03d22e9e68',1,'boot.php']]],
['profile_5fphoto_5faside',['profile_photo_aside',['../profile__photo_8php.html#ac9cd968a767e2ae1b88383b6cdd6dbe3',1,'profile_photo.php']]],
['profile_5fphoto_5finit',['profile_photo_init',['../profile__photo_8php.html#a140631c56438fbfacb61a1eb43067d02',1,'profile_photo.php']]],
['profile_5fphoto_5fpost',['profile_photo_post',['../profile__photo_8php.html#a4b80234074bd603221aa5364f330e479',1,'profile_photo.php']]],
- ['profile_5fsidebar',['profile_sidebar',['../boot_8php.html#a646123ebbb10eb6f5b6ff26f4288da9b',1,'boot.php']]],
+ ['profile_5fsidebar',['profile_sidebar',['../boot_8php.html#a432259b2cf5b6f59be53e71db9f2c7dc',1,'boot.php']]],
['profile_5ftabs',['profile_tabs',['../boot_8php.html#a1dfcb5146e9d1eca4528bc580ad5d273',1,'boot.php']]],
['profiler',['profiler',['../text_8php.html#a8b0a799341b1fc4cba2c3ede3e3fc9b6',1,'text.php']]],
['profiles_5faside',['profiles_aside',['../profiles_8php.html#a2a3ac90f51941ff78b85e9389304969c',1,'profiles.php']]],
diff --git a/doc/html/search/functions_73.js b/doc/html/search/functions_73.js
index fbf07d011..208720a2c 100644
--- a/doc/html/search/functions_73.js
+++ b/doc/html/search/functions_73.js
@@ -57,6 +57,7 @@ var searchData=
['sexpref_5fselector',['sexpref_selector',['../profile__selectors_8php.html#a3b50b3ea4ea4bdbebebfffc5d1b157c7',1,'profile_selectors.php']]],
['share_5finit',['share_init',['../share_8php.html#afeb26046bdd02567ecd29ab5f188b249',1,'share.php']]],
['showform',['showForm',['../fpostit_8php.html#a3f3ae3ae61578b5671673914fd894443',1,'fpostit.php']]],
+ ['site_5fdefault_5fperms',['site_default_perms',['../permissions_8php.html#aa8b7b102c653649d7a71b5a1c044d90d',1,'permissions.php']]],
['siteinfo_5fcontent',['siteinfo_content',['../siteinfo_8php.html#a70c09bfb6dd1c86a125a35f62ed53656',1,'siteinfo.php']]],
['siteinfo_5finit',['siteinfo_init',['../siteinfo_8php.html#a3efbd0bd6564af19ec0a9ce0294e59d0',1,'siteinfo.php']]],
['sitelist_5finit',['sitelist_init',['../sitelist_8php.html#a665a59bf60f780b40f32c909f4a473b1',1,'sitelist.php']]],
diff --git a/doc/html/search/variables_70.js b/doc/html/search/variables_70.js
index 3b6d5ed63..e26b79358 100644
--- a/doc/html/search/variables_70.js
+++ b/doc/html/search/variables_70.js
@@ -6,6 +6,7 @@ var searchData=
['page_5fdirectory_5fchannel',['PAGE_DIRECTORY_CHANNEL',['../boot_8php.html#a5b8484922918946d041e5e0515dbe718',1,'boot.php']]],
['page_5fhidden',['PAGE_HIDDEN',['../boot_8php.html#a5e322a2a2d0f51924c0b2e874988e640',1,'boot.php']]],
['page_5fnormal',['PAGE_NORMAL',['../boot_8php.html#a09532c3f750ae8c4527e63b2b790cbf3',1,'boot.php']]],
+ ['page_5fpremium',['PAGE_PREMIUM',['../boot_8php.html#ab3920c2f3cd64802c0b7ff625c3b2ea8',1,'boot.php']]],
['page_5fremoved',['PAGE_REMOVED',['../boot_8php.html#a4edce16cb7f21cdafa1e85bf63d713e6',1,'boot.php']]],
['path',['path',['../namespacefriendica-to-smarty-tpl.html#a68d15934660cd1f4301ce251b1646f09',1,'friendica-to-smarty-tpl.path()'],['../namespaceupdatetpl.html#ae694f5e1f25f8a92a945eb90c432dfe6',1,'updatetpl.path()']]],
['perms_5fa_5fdelegate',['PERMS_A_DELEGATE',['../boot_8php.html#a423505ab8dbd8e39d04ae3fe1374102b',1,'boot.php']]],
diff --git a/doc/html/text_8php.html b/doc/html/text_8php.html
index d00a44abb..00695b9e3 100644
--- a/doc/html/text_8php.html
+++ b/doc/html/text_8php.html
@@ -581,7 +581,7 @@ Variables
@@ -651,7 +651,7 @@ Variables
- Returns
- string
-Referenced by admin_page_logs(), channel_content(), create_identity(), events_post(), fsuggest_post(), get_atom_elements(), item_post(), item_store(), item_store_update(), mail_store(), menu_add_item(), menu_create(), menu_edit(), menu_edit_item(), message_content(), message_post(), network_content(), post_activity_item(), printable(), profiles_post(), and thing_init().
+Referenced by admin_page_logs(), channel_content(), connect_post(), create_identity(), events_post(), fsuggest_post(), get_atom_elements(), item_post(), item_store(), item_store_update(), mail_store(), menu_add_item(), menu_create(), menu_edit(), menu_edit_item(), message_content(), message_post(), network_content(), post_activity_item(), printable(), profiles_post(), and thing_init().
@@ -1027,7 +1027,7 @@ Variables
-
Referenced by editpost_content(), encode_item(), encode_mail(), localize_item(), prepare_body(), private_messages_fetch_conversation(), private_messages_fetch_message(), private_messages_list(), remove_community_tag(), and tag_deliver().
+
Referenced by editpost_content(), encode_item(), encode_mail(), localize_item(), message_content(), prepare_body(), private_messages_fetch_conversation(), private_messages_fetch_message(), private_messages_list(), remove_community_tag(), and tag_deliver().
@@ -1140,7 +1140,7 @@ Variables
-
Referenced by account_remove(), account_verify_password(), Item\add_child(), Conversation\add_thread(), advanced_profile(), aes_encapsulate(), allowed_public_recips(), api_call(), api_channel_stream(), api_export_basic(), api_favorites(), api_get_user(), api_login(), api_statuses_destroy(), api_statuses_mediap(), api_statuses_repeat(), api_statuses_show(), api_statuses_update(), api_statuses_user_timeline(), authenticate_success(), avatar_img(), base64url_decode(), build_sync_packet(), channel_remove(), chanview_content(), check_config(), check_form_security_token_ForbiddenOnErr(), check_form_security_token_redirectOnErr(), consume_feed(), conversation(), create_account(), create_identity(), crepair_post(), cronhooks_run(), datetime_convert(), delete_imported_item(), deliver_run(), detect_language(), dfrn_deliver(), directory_content(), directory_run(), display_content(), email_send(), encode_item(), expire_run(), feed_init(), fetch_lrdd_template(), fetch_xrd_links(), filer_content(), filerm_content(), fix_private_photos(), Conversation\get_template_data(), group_content(), guess_image_type(), head_set_icon(), http_status_exit(), import_author_xchan(), import_channel_photo(), import_directory_profile(), import_post(), import_profile_photo(), import_site(), import_xchan(), install_plugin(), item_expire(), item_post(), item_store(), item_store_update(), like_content(), limit_body_size(), load_plugin(), FKOAuth1\loginUser(), FKOAuthDataStore\lookup_consumer(), FKOAuthDataStore\lookup_token(), lrdd(), magic_init(), mail_store(), menu_edit(), message_content(), message_post(), mini_group_select(), mood_init(), network_content(), FKOAuthDataStore\new_access_token(), new_contact(), new_keypair(), FKOAuthDataStore\new_request_token(), notification(), notifier_run(), onepoll_run(), parse_url_content(), parse_xml_string(), photo_init(), photo_upload(), photos_post(), ping_init(), poco_init(), poco_load(), poke_init(), poller_run(), post_activity_item(), post_init(), post_post(), private_messages_list(), process_channel_sync_delivery(), process_delivery(), process_mail_delivery(), process_profile_delivery(), profile_load(), public_recips(), dba_mysql\q(), dba_mysqli\q(), q(), queue_run(), redir_init(), register_content(), reload_plugins(), Item\remove_child(), remove_community_tag(), remove_queue_item(), scale_external_images(), search_ac_init(), enotify\send(), send_reg_approval_email(), Conversation\set_mode(), subthread_content(), syncdirs(), tag_deliver(), tagger_content(), tgroup_check(), uninstall_plugin(), unload_plugin(), update_imported_item(), update_queue_time(), webfinger(), webfinger_dfrn(), xml2array(), xml_status(), zfinger_init(), zid_init(), zot_build_packet(), zot_fetch(), zot_finger(), zot_gethub(), zot_import(), zot_process_response(), zot_refresh(), and zot_register_hub().
+
Referenced by account_remove(), account_verify_password(), Item\add_child(), Conversation\add_thread(), advanced_profile(), aes_encapsulate(), allowed_public_recips(), api_call(), api_channel_stream(), api_export_basic(), api_favorites(), api_get_user(), api_login(), api_statuses_destroy(), api_statuses_mediap(), api_statuses_repeat(), api_statuses_show(), api_statuses_update(), api_statuses_user_timeline(), authenticate_success(), avatar_img(), base64url_decode(), build_sync_packet(), channel_remove(), chanview_content(), check_config(), check_form_security_token_ForbiddenOnErr(), check_form_security_token_redirectOnErr(), consume_feed(), conversation(), create_account(), create_identity(), crepair_post(), cronhooks_run(), datetime_convert(), delete_imported_item(), deliver_run(), detect_language(), dfrn_deliver(), directory_content(), directory_run(), display_content(), email_send(), encode_item(), expire_run(), feed_init(), fetch_lrdd_template(), fetch_xrd_links(), filer_content(), filerm_content(), fix_private_photos(), Conversation\get_template_data(), group_content(), guess_image_type(), head_set_icon(), http_status_exit(), import_author_xchan(), import_channel_photo(), import_directory_profile(), import_post(), import_profile_photo(), import_site(), import_xchan(), install_plugin(), item_expire(), item_post(), item_store(), item_store_update(), like_content(), limit_body_size(), load_plugin(), localize_item(), FKOAuth1\loginUser(), FKOAuthDataStore\lookup_consumer(), FKOAuthDataStore\lookup_token(), lrdd(), magic_init(), mail_store(), menu_edit(), message_content(), message_post(), mini_group_select(), mood_init(), network_content(), FKOAuthDataStore\new_access_token(), new_contact(), new_keypair(), FKOAuthDataStore\new_request_token(), notification(), notifier_run(), onepoll_run(), parse_url_content(), parse_xml_string(), photo_init(), photo_upload(), photos_post(), ping_init(), poco_init(), poco_load(), poke_init(), poller_run(), post_activity_item(), post_init(), post_post(), private_messages_list(), process_channel_sync_delivery(), process_delivery(), process_mail_delivery(), process_profile_delivery(), profile_load(), public_recips(), dba_mysql\q(), dba_mysqli\q(), q(), queue_run(), redir_init(), register_content(), reload_plugins(), Item\remove_child(), remove_community_tag(), remove_queue_item(), scale_external_images(), search_ac_init(), enotify\send(), send_reg_approval_email(), Conversation\set_mode(), subthread_content(), syncdirs(), tag_deliver(), tagger_content(), tgroup_check(), uninstall_plugin(), unload_plugin(), update_imported_item(), update_queue_time(), webfinger(), webfinger_dfrn(), xml2array(), xml_status(), zfinger_init(), zid_init(), zot_build_packet(), zot_fetch(), zot_finger(), zot_gethub(), zot_import(), zot_process_response(), zot_refresh(), and zot_register_hub().
@@ -1418,7 +1418,7 @@ Variables
@@ -1597,7 +1597,7 @@ Variables
- Returns
- string substituted string
-Referenced by admin_content(), admin_page_dbsync(), admin_page_logs(), admin_page_plugins(), admin_page_site(), admin_page_summary(), admin_page_themes(), admin_page_users(), advanced_profile(), allfriends_content(), alt_pager(), api_apply_template(), api_content(), apps_content(), App\build_pagehead(), categories_widget(), channel_content(), chanview_content(), check_config(), check_php(), common_content(), common_friends_visitor_widget(), connections_content(), construct_page(), contact_block(), conversation(), crepair_content(), delegate_content(), directory_content(), dirfind_content(), display_content(), editpost_content(), editwebpage_content(), events_content(), fbrowser_content(), field_timezone(), fileas_widget(), filer_content(), findpeople_widget(), follow_widget(), get_birthdays(), Item\get_comment_box(), get_events(), get_feed_for(), group_content(), group_side(), help_content(), hostxrd_init(), import_content(), intro_content(), invite_content(), lang_selector(), lastpost_content(), login(), lostpass_content(), lostpass_post(), manage_content(), match_content(), menu_content(), menu_render(), message_aside(), message_content(), micropro(), mini_group_select(), mitem_content(), mood_content(), nav(), network_content(), new_channel_content(), nogroup_content(), notification(), notifications_content(), notify_content(), oembed_format_object(), oexchange_init(), opensearch_init(), pagelist_widget(), photos_album_widget(), photos_content(), poco_init(), poke_content(), populate_acl(), posted_date_widget(), profile_sidebar(), profile_tabs(), profiles_content(), redbasic_form(), register_content(), removeme_content(), rmagic_content(), saved_searches(), search_content(), send_reg_approval_email(), send_verification_email(), settings_aside(), setup_content(), setup_post(), siteinfo_content(), suggest_content(), thing_content(), user_allow(), vcard_from_xchan(), viewconnections_content(), webpages_content(), writepages_widget(), and xrd_init().
+Referenced by admin_content(), admin_page_dbsync(), admin_page_logs(), admin_page_plugins(), admin_page_site(), admin_page_summary(), admin_page_themes(), admin_page_users(), advanced_profile(), allfriends_content(), alt_pager(), api_apply_template(), api_content(), apps_content(), App\build_pagehead(), categories_widget(), channel_content(), chanview_content(), check_config(), check_php(), common_content(), common_friends_visitor_widget(), connect_content(), connections_content(), construct_page(), contact_block(), conversation(), crepair_content(), delegate_content(), directory_content(), dirfind_content(), display_content(), editpost_content(), editwebpage_content(), events_content(), fbrowser_content(), field_timezone(), fileas_widget(), filer_content(), findpeople_widget(), follow_widget(), get_birthdays(), Item\get_comment_box(), get_events(), get_feed_for(), group_content(), group_side(), help_content(), hostxrd_init(), import_content(), intro_content(), invite_content(), lang_selector(), lastpost_content(), login(), lostpass_content(), lostpass_post(), manage_content(), match_content(), menu_content(), menu_render(), message_aside(), message_content(), micropro(), mini_group_select(), mitem_content(), mood_content(), nav(), network_content(), new_channel_content(), nogroup_content(), notification(), notifications_content(), notify_content(), oembed_format_object(), oexchange_init(), opensearch_init(), pagelist_widget(), photos_album_widget(), photos_content(), poco_init(), poke_content(), populate_acl(), posted_date_widget(), profile_sidebar(), profile_tabs(), profiles_content(), redbasic_form(), register_content(), removeme_content(), rmagic_content(), saved_searches(), search_content(), send_reg_approval_email(), send_verification_email(), settings_aside(), setup_content(), setup_post(), siteinfo_content(), suggest_content(), thing_content(), user_allow(), vcard_from_xchan(), viewconnections_content(), webpages_content(), writepages_widget(), and xrd_init().
diff --git a/doc/html/typo_8php.html b/doc/html/typo_8php.html
index caf849b49..836bff6a1 100644
--- a/doc/html/typo_8php.html
+++ b/doc/html/typo_8php.html
@@ -134,7 +134,7 @@ Variables
-
Referenced by FriendicaSmarty\__construct(), Item\__construct(), FriendicaSmartyEngine\__construct(), Template\_replcb_if(), Template\_replcb_inc(), _well_known_init(), abook_toggle_flag(), acl_init(), admin_content(), admin_page_dbsync(), admin_page_logs(), admin_page_logs_post(), admin_page_plugins(), admin_page_site(), admin_page_site_post(), admin_page_summary(), admin_page_themes(), admin_page_users(), admin_page_users_post(), admin_post(), advanced_profile(), allfriends_content(), allowed_email(), allowed_url(), alt_pager(), api_account_verify_credentials(), api_albums(), api_apply_template(), api_call(), api_content(), api_direct_messages_all(), api_direct_messages_box(), api_direct_messages_conversation(), api_direct_messages_inbox(), api_direct_messages_new(), api_direct_messages_sentbox(), api_favorites(), api_followers_ids(), api_format_as(), api_format_items(), api_friends_ids(), api_get_user(), api_item_get_user(), api_login(), api_photos(), api_post(), api_rss_extra(), api_status_show(), api_statuses_destroy(), api_statuses_f(), api_statuses_followers(), api_statuses_friends(), api_statuses_home_timeline(), api_statuses_mediap(), api_statuses_mentions(), api_statuses_public_timeline(), api_statuses_repeat(), api_statuses_show(), api_statuses_update(), api_statuses_user_timeline(), api_statusnet_config(), api_users_show(), apps_content(), atom_entry(), attribute_contains(), authenticate_success(), avatar_img(), bbcode(), best_link_url(), build_sync_packet(), cal(), call_hooks(), categories_widget(), channel_aside(), channel_content(), channel_init(), channel_remove(), chanview_content(), check_config(), check_form_security_token(), check_form_security_token_ForbiddenOnErr(), check_form_security_token_redirectOnErr(), check_htaccess(), clean_urls(), cli_startup(), cli_suggest_run(), common_aside(), common_content(), common_friends_visitor_widget(), common_init(), community_content(), connections_aside(), connections_clone(), connections_content(), connections_init(), connections_post(), construct_page(), contact_block(), contact_select(), conversation(), create_identity(), crepair_content(), crepair_init(), crepair_post(), current_theme(), current_theme_url(), del_config(), del_pconfig(), del_xconfig(), delegate_content(), deliver_run(), dfrn_deliver(), directory_aside(), directory_content(), directory_init(), dirfind_content(), dirfind_init(), dirsearch_init(), display_content(), dlogger(), drop_item(), editpost_content(), editwebpage_content(), ev_compare(), event_store(), events_content(), events_post(), expand_acl(), expand_groups(), fbrowser_content(), fetch_url(), fileas_widget(), filer_content(), filerm_content(), findpeople_widget(), fix_private_photos(), follow_init(), format_event_diaspora(), fsuggest_content(), fsuggest_post(), BaseObject\get_app(), get_app(), get_best_language(), get_birthdays(), Item\get_comment_box(), get_config(), get_events(), get_form_security_token(), FriendicaSmartyEngine\get_intltext_template(), get_intltext_template(), get_markup_template(), get_max_import_size(), get_pconfig(), get_plink(), Item\get_template_data(), get_theme_screenshot(), get_xconfig(), gprobe_run(), group_aside(), group_content(), group_post(), group_select(), guess_image_type(), handle_tag(), hcard_aside(), hcard_init(), head_get_icon(), head_set_icon(), help_content(), hostxrd_init(), import_channel_photo(), import_profile_photo(), info(), intro_aside(), intro_content(), invite_content(), invite_post(), is_site_admin(), item_content(), item_photo_menu(), item_post(), items_fetch(), lang_selector(), lastpost_aside(), lastpost_content(), lastpost_init(), like_content(), like_puller(), link_compare(), load_config(), load_contact_links(), load_database(), load_hooks(), load_pconfig(), load_translation_table(), load_xconfig(), logger(), login(), login_content(), FKOAuth1\loginUser(), lostpass_content(), lostpass_post(), lrdd(), magic_init(), manual_config(), match_content(), message_aside(), message_content(), message_post(), mitem_content(), mitem_init(), mitem_post(), mood_init(), msearch_post(), nav(), nav_set_selected(), network_content(), network_init(), new_contact(), nogroup_content(), nogroup_init(), notice(), notification(), notifications_content(), notifications_post(), notifier_run(), notify_content(), notify_init(), oembed_fetch_url(), oembed_format_object(), oembed_iframe(), oexchange_content(), oexchange_init(), onepoll_run(), opensearch_init(), page_content(), page_init(), paginate(), photo_init(), photos_content(), photos_init(), photos_post(), ping_init(), poco_init(), poco_load(), poke_init(), poller_run(), pop_lang(), post_init(), post_url(), preg_heart(), prepare_body(), probe_content(), proc_run(), profile_activity(), profile_aside(), profile_content(), profile_create_sidebar(), profile_init(), profile_load(), profile_photo_aside(), profile_photo_init(), profile_photo_post(), profile_sidebar(), profile_tabs(), profiles_aside(), profiles_content(), profiles_init(), profiles_post(), profperm_aside(), profperm_content(), profperm_init(), push_lang(), queue_run(), randprof_init(), redbasic_form(), redbasic_init(), redir_init(), redstrap_init(), register_content(), regmod_content(), relative_date(), removeme_content(), removeme_post(), replace_macros(), rmagic_post(), saved_searches(), scale_external_images(), search(), search_ac_init(), search_content(), search_init(), search_post(), send_message(), service_class_allows(), service_class_fetch(), set_config(), Conversation\set_mode(), set_pconfig(), set_xconfig(), settings_aside(), settings_init(), settings_post(), setup_content(), setup_post(), siteinfo_content(), siteinfo_init(), smilies(), subthread_content(), suggest_aside(), suggest_content(), t(), tag_deliver(), tagger_content(), tagrm_content(), tagrm_post(), tags_sort(), terminate_friendship(), tgroup_check(), theme_content(), theme_include(), thing_init(), timezone_cmp(), toggle_mobile_init(), tt(), uexport_init(), update_channel_content(), update_community_content(), update_display_content(), update_network_content(), update_search_content(), update_suggestions(), user_allow(), vcard_from_xchan(), viewconnections_aside(), viewconnections_content(), viewconnections_init(), viewsrc_content(), wall_upload_post(), webpages_content(), wfinger_init(), what_next(), xrd_init(), z_fetch_url(), z_path(), z_root(), zfinger_init(), zid_init(), and zotfeed_init().
+
Referenced by FriendicaSmarty\__construct(), Item\__construct(), FriendicaSmartyEngine\__construct(), Template\_replcb_if(), Template\_replcb_inc(), _well_known_init(), abook_toggle_flag(), acl_init(), admin_content(), admin_page_dbsync(), admin_page_logs(), admin_page_logs_post(), admin_page_plugins(), admin_page_site(), admin_page_site_post(), admin_page_summary(), admin_page_themes(), admin_page_users(), admin_page_users_post(), admin_post(), advanced_profile(), allfriends_content(), allowed_email(), allowed_url(), alt_pager(), api_account_verify_credentials(), api_albums(), api_apply_template(), api_call(), api_content(), api_direct_messages_all(), api_direct_messages_box(), api_direct_messages_conversation(), api_direct_messages_inbox(), api_direct_messages_new(), api_direct_messages_sentbox(), api_favorites(), api_followers_ids(), api_format_as(), api_format_items(), api_friends_ids(), api_get_user(), api_item_get_user(), api_login(), api_photos(), api_post(), api_rss_extra(), api_status_show(), api_statuses_destroy(), api_statuses_f(), api_statuses_followers(), api_statuses_friends(), api_statuses_home_timeline(), api_statuses_mediap(), api_statuses_mentions(), api_statuses_public_timeline(), api_statuses_repeat(), api_statuses_show(), api_statuses_update(), api_statuses_user_timeline(), api_statusnet_config(), api_users_show(), apps_content(), atom_entry(), attribute_contains(), authenticate_success(), avatar_img(), bbcode(), best_link_url(), build_sync_packet(), cal(), call_hooks(), categories_widget(), channel_aside(), channel_content(), channel_init(), channel_remove(), chanview_content(), check_config(), check_form_security_token(), check_form_security_token_ForbiddenOnErr(), check_form_security_token_redirectOnErr(), check_htaccess(), clean_urls(), cli_startup(), cli_suggest_run(), common_aside(), common_content(), common_friends_visitor_widget(), common_init(), community_content(), connect_content(), connect_init(), connect_post(), connections_aside(), connections_clone(), connections_content(), connections_init(), connections_post(), construct_page(), contact_block(), contact_select(), conversation(), create_identity(), crepair_content(), crepair_init(), crepair_post(), current_theme(), current_theme_url(), del_config(), del_pconfig(), del_xconfig(), delegate_content(), deliver_run(), dfrn_deliver(), directory_aside(), directory_content(), directory_init(), dirfind_content(), dirfind_init(), dirsearch_init(), display_content(), dlogger(), drop_item(), editpost_content(), editwebpage_content(), ev_compare(), event_store(), events_content(), events_post(), expand_acl(), expand_groups(), fbrowser_content(), fetch_url(), fileas_widget(), filer_content(), filerm_content(), findpeople_widget(), fix_private_photos(), follow_init(), format_event_diaspora(), fsuggest_content(), fsuggest_post(), BaseObject\get_app(), get_app(), get_best_language(), get_birthdays(), Item\get_comment_box(), get_config(), get_events(), get_form_security_token(), FriendicaSmartyEngine\get_intltext_template(), get_intltext_template(), get_markup_template(), get_max_import_size(), get_pconfig(), get_plink(), Item\get_template_data(), get_theme_screenshot(), get_xconfig(), gprobe_run(), group_aside(), group_content(), group_post(), group_select(), guess_image_type(), handle_tag(), hcard_aside(), hcard_init(), head_get_icon(), head_set_icon(), help_content(), hostxrd_init(), import_channel_photo(), import_post(), import_profile_photo(), info(), intro_aside(), intro_content(), invite_content(), invite_post(), is_site_admin(), item_content(), item_photo_menu(), item_post(), items_fetch(), lang_selector(), lastpost_aside(), lastpost_content(), lastpost_init(), like_content(), like_puller(), link_compare(), load_config(), load_contact_links(), load_database(), load_hooks(), load_pconfig(), load_translation_table(), load_xconfig(), logger(), login(), login_content(), FKOAuth1\loginUser(), lostpass_content(), lostpass_post(), lrdd(), magic_init(), manual_config(), match_content(), message_aside(), message_content(), message_post(), mitem_content(), mitem_init(), mitem_post(), mood_init(), msearch_post(), nav(), nav_set_selected(), network_content(), network_init(), new_contact(), nogroup_content(), nogroup_init(), notice(), notification(), notifications_content(), notifications_post(), notifier_run(), notify_content(), notify_init(), oembed_fetch_url(), oembed_format_object(), oembed_iframe(), oexchange_content(), oexchange_init(), onepoll_run(), opensearch_init(), page_content(), page_init(), paginate(), photo_init(), photos_content(), photos_init(), photos_post(), ping_init(), poco_init(), poco_load(), poke_init(), poller_run(), pop_lang(), post_init(), post_url(), preg_heart(), prepare_body(), probe_content(), proc_run(), profile_activity(), profile_aside(), profile_content(), profile_create_sidebar(), profile_init(), profile_load(), profile_photo_aside(), profile_photo_init(), profile_photo_post(), profile_sidebar(), profile_tabs(), profiles_aside(), profiles_content(), profiles_init(), profiles_post(), profperm_aside(), profperm_content(), profperm_init(), push_lang(), queue_run(), randprof_init(), redbasic_form(), redbasic_init(), redir_init(), redstrap_init(), register_content(), regmod_content(), relative_date(), removeme_content(), removeme_post(), replace_macros(), rmagic_post(), saved_searches(), scale_external_images(), search(), search_ac_init(), search_content(), search_init(), search_post(), send_message(), service_class_allows(), service_class_fetch(), set_config(), Conversation\set_mode(), set_pconfig(), set_xconfig(), settings_aside(), settings_init(), settings_post(), setup_content(), setup_post(), siteinfo_content(), siteinfo_init(), smilies(), subthread_content(), suggest_aside(), suggest_content(), t(), tag_deliver(), tagger_content(), tagrm_content(), tagrm_post(), tags_sort(), terminate_friendship(), tgroup_check(), theme_content(), theme_include(), thing_init(), timezone_cmp(), toggle_mobile_init(), tt(), uexport_init(), update_channel_content(), update_community_content(), update_display_content(), update_network_content(), update_search_content(), update_suggestions(), user_allow(), vcard_from_xchan(), viewconnections_aside(), viewconnections_content(), viewconnections_init(), viewsrc_content(), wall_upload_post(), webpages_content(), wfinger_init(), what_next(), xrd_init(), z_fetch_url(), z_path(), z_root(), zfinger_init(), zid_init(), and zotfeed_init().
diff --git a/doc/html/zot_8php.html b/doc/html/zot_8php.html
index 3f633c9d8..ce7997d6d 100644
--- a/doc/html/zot_8php.html
+++ b/doc/html/zot_8php.html
@@ -345,7 +345,7 @@ Functions
-
Referenced by chanview_content(), gprobe_run(), magic_init(), message_post(), new_contact(), poco_load(), post_init(), zot_refresh(), and zot_register_hub().
+
Referenced by chanview_content(), gprobe_run(), magic_init(), message_post(), new_contact(), poco_load(), post_init(), zot_refresh(), and zot_register_hub().
@@ -695,7 +695,7 @@ Functions
- Returns
- : array => see z_post_url and mod/zfinger.php
-Referenced by chanview_content(), gprobe_run(), magic_init(), message_post(), new_contact(), poco_load(), post_init(), and probe_content().
+Referenced by chanview_content(), gprobe_run(), magic_init(), message_post(), new_contact(), poco_load(), post_init(), and probe_content().
diff --git a/util/messages.po b/util/messages.po
index b3a7ee42e..2a36c8757 100644
--- a/util/messages.po
+++ b/util/messages.po
@@ -6,9 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: 2013-08-16.407\n"
+"Project-Id-Version: 2013-08-23.414\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-08-16 00:01-0700\n"
+"POT-Creation-Date: 2013-08-23 00:01-0700\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
@@ -242,47 +242,47 @@ msgstr ""
msgid "Please visit %s to approve or reject the suggestion."
msgstr ""
-#: ../../include/Contact.php:80 ../../include/contact_widgets.php:9
+#: ../../include/Contact.php:87 ../../include/contact_widgets.php:9
#: ../../mod/directory.php:163 ../../mod/match.php:58 ../../mod/suggest.php:56
-#: ../../boot.php:1630
+#: ../../boot.php:1631
msgid "Connect"
msgstr ""
-#: ../../include/Contact.php:96
+#: ../../include/Contact.php:103
msgid "New window"
msgstr ""
-#: ../../include/Contact.php:97
+#: ../../include/Contact.php:104
msgid "Open the selected location in a different window or browser tab"
msgstr ""
-#: ../../include/Contact.php:455 ../../include/conversation.php:887
+#: ../../include/Contact.php:462 ../../include/conversation.php:904
msgid "Poke"
msgstr ""
-#: ../../include/Contact.php:456 ../../include/conversation.php:881
+#: ../../include/Contact.php:463 ../../include/conversation.php:898
msgid "View Status"
msgstr ""
-#: ../../include/Contact.php:457 ../../include/nav.php:75
-#: ../../include/conversation.php:882 ../../mod/connections.php:295
+#: ../../include/Contact.php:464 ../../include/nav.php:75
+#: ../../include/conversation.php:899 ../../mod/connections.php:295
#: ../../mod/connections.php:402
msgid "View Profile"
msgstr ""
-#: ../../include/Contact.php:458 ../../include/conversation.php:883
+#: ../../include/Contact.php:465 ../../include/conversation.php:900
msgid "View Photos"
msgstr ""
-#: ../../include/Contact.php:459 ../../include/conversation.php:884
+#: ../../include/Contact.php:466 ../../include/conversation.php:901
msgid "Network Posts"
msgstr ""
-#: ../../include/Contact.php:460 ../../include/conversation.php:885
+#: ../../include/Contact.php:467 ../../include/conversation.php:902
msgid "Edit Contact"
msgstr ""
-#: ../../include/Contact.php:461 ../../include/conversation.php:886
+#: ../../include/Contact.php:468 ../../include/conversation.php:903
msgid "Send PM"
msgstr ""
@@ -347,7 +347,7 @@ msgid "RSS/Atom"
msgstr ""
#: ../../include/contact_selectors.php:77 ../../mod/admin.php:636
-#: ../../mod/admin.php:645 ../../boot.php:1369
+#: ../../mod/admin.php:645 ../../boot.php:1366
msgid "Email"
msgstr ""
@@ -431,7 +431,7 @@ msgstr ""
msgid "Invite Friends"
msgstr ""
-#: ../../include/contact_widgets.php:61 ../../include/features.php:59
+#: ../../include/contact_widgets.php:61 ../../include/features.php:58
msgid "Saved Folders"
msgstr ""
@@ -546,7 +546,7 @@ msgid "Finishes:"
msgstr ""
#: ../../include/event.php:40 ../../include/bb2diaspora.php:455
-#: ../../mod/events.php:450 ../../mod/directory.php:138 ../../boot.php:1675
+#: ../../mod/events.php:450 ../../mod/directory.php:138 ../../boot.php:1681
msgid "Location:"
msgstr ""
@@ -594,140 +594,150 @@ msgstr ""
msgid "Enable Expert Mode to provide advanced configuration options"
msgstr ""
-#: ../../include/features.php:36
+#: ../../include/features.php:30
+msgid "Premium Channel"
+msgstr ""
+
+#: ../../include/features.php:30
+msgid ""
+"Allows you to set restrictions and terms on those that connect with your "
+"channel"
+msgstr ""
+
+#: ../../include/features.php:35
msgid "Post Composition Features"
msgstr ""
-#: ../../include/features.php:37
+#: ../../include/features.php:36
msgid "Richtext Editor"
msgstr ""
-#: ../../include/features.php:37
+#: ../../include/features.php:36
msgid "Enable richtext editor"
msgstr ""
-#: ../../include/features.php:38
+#: ../../include/features.php:37
msgid "Post Preview"
msgstr ""
-#: ../../include/features.php:38
+#: ../../include/features.php:37
msgid "Allow previewing posts and comments before publishing them"
msgstr ""
-#: ../../include/features.php:43
+#: ../../include/features.php:42
msgid "Network and Stream Filtering"
msgstr ""
-#: ../../include/features.php:44
+#: ../../include/features.php:43
msgid "Search by Date"
msgstr ""
-#: ../../include/features.php:44
+#: ../../include/features.php:43
msgid "Ability to select posts by date ranges"
msgstr ""
-#: ../../include/features.php:45
+#: ../../include/features.php:44
msgid "Collections Filter"
msgstr ""
-#: ../../include/features.php:45
+#: ../../include/features.php:44
msgid "Enable widget to display Network posts only from selected collections"
msgstr ""
-#: ../../include/features.php:46 ../../mod/network.php:150
+#: ../../include/features.php:45 ../../mod/network.php:150
#: ../../mod/search.php:17
msgid "Saved Searches"
msgstr ""
-#: ../../include/features.php:46
+#: ../../include/features.php:45
msgid "Save search terms for re-use"
msgstr ""
-#: ../../include/features.php:47
+#: ../../include/features.php:46
msgid "Network Personal Tab"
msgstr ""
-#: ../../include/features.php:47
+#: ../../include/features.php:46
msgid "Enable tab to display only Network posts that you've interacted on"
msgstr ""
-#: ../../include/features.php:48
+#: ../../include/features.php:47
msgid "Network New Tab"
msgstr ""
-#: ../../include/features.php:48
+#: ../../include/features.php:47
msgid "Enable tab to display all new Network activity"
msgstr ""
-#: ../../include/features.php:49
+#: ../../include/features.php:48
msgid "Affinity Tool"
msgstr ""
-#: ../../include/features.php:49
+#: ../../include/features.php:48
msgid "Filter stream activity by depth of relationships"
msgstr ""
-#: ../../include/features.php:54
+#: ../../include/features.php:53
msgid "Post/Comment Tools"
msgstr ""
-#: ../../include/features.php:55
+#: ../../include/features.php:54
msgid "Multiple Deletion"
msgstr ""
-#: ../../include/features.php:55
+#: ../../include/features.php:54
msgid "Select and delete multiple posts/comments at once"
msgstr ""
-#: ../../include/features.php:56
+#: ../../include/features.php:55
msgid "Edit Sent Posts"
msgstr ""
-#: ../../include/features.php:56
+#: ../../include/features.php:55
msgid "Edit and correct posts and comments after sending"
msgstr ""
-#: ../../include/features.php:57
+#: ../../include/features.php:56
msgid "Tagging"
msgstr ""
-#: ../../include/features.php:57
+#: ../../include/features.php:56
msgid "Ability to tag existing posts"
msgstr ""
-#: ../../include/features.php:58
+#: ../../include/features.php:57
msgid "Post Categories"
msgstr ""
-#: ../../include/features.php:58
+#: ../../include/features.php:57
msgid "Add categories to your posts"
msgstr ""
-#: ../../include/features.php:59
+#: ../../include/features.php:58
msgid "Ability to file posts under folders"
msgstr ""
-#: ../../include/features.php:60
+#: ../../include/features.php:59
msgid "Dislike Posts"
msgstr ""
-#: ../../include/features.php:60
+#: ../../include/features.php:59
msgid "Ability to dislike posts/comments"
msgstr ""
-#: ../../include/features.php:61
+#: ../../include/features.php:60
msgid "Star Posts"
msgstr ""
-#: ../../include/features.php:61
+#: ../../include/features.php:60
msgid "Ability to mark special posts with a star indicator"
msgstr ""
-#: ../../include/features.php:62
+#: ../../include/features.php:61
msgid "Tag Cloud"
msgstr ""
-#: ../../include/features.php:62
+#: ../../include/features.php:61
msgid "Provide a personal tag cloud on your channel page"
msgstr ""
@@ -865,19 +875,19 @@ msgstr ""
msgid "timeago.numbers"
msgstr ""
-#: ../../include/message.php:17
+#: ../../include/message.php:18
msgid "No recipient provided."
msgstr ""
-#: ../../include/message.php:22
+#: ../../include/message.php:23
msgid "[no subject]"
msgstr ""
-#: ../../include/message.php:37
+#: ../../include/message.php:38
msgid "Unable to determine sender."
msgstr ""
-#: ../../include/message.php:106
+#: ../../include/message.php:138
msgid "Stored post could not be verified."
msgstr ""
@@ -897,12 +907,12 @@ msgstr ""
msgid "Profile"
msgstr ""
-#: ../../include/profile_advanced.php:15 ../../mod/settings.php:1017
+#: ../../include/profile_advanced.php:15 ../../mod/settings.php:1031
msgid "Full Name:"
msgstr ""
#: ../../include/profile_advanced.php:17 ../../mod/directory.php:140
-#: ../../boot.php:1677
+#: ../../boot.php:1683
msgid "Gender:"
msgstr ""
@@ -923,7 +933,7 @@ msgid "Age:"
msgstr ""
#: ../../include/profile_advanced.php:37 ../../mod/directory.php:142
-#: ../../boot.php:1678
+#: ../../boot.php:1684
msgid "Status:"
msgstr ""
@@ -937,7 +947,7 @@ msgid "Sexual Preference:"
msgstr ""
#: ../../include/profile_advanced.php:48 ../../mod/directory.php:144
-#: ../../boot.php:1679
+#: ../../boot.php:1685
msgid "Homepage:"
msgstr ""
@@ -1005,7 +1015,7 @@ msgstr ""
msgid "School/education:"
msgstr ""
-#: ../../include/nav.php:71 ../../include/nav.php:86 ../../boot.php:1366
+#: ../../include/nav.php:71 ../../include/nav.php:86 ../../boot.php:1363
msgid "Logout"
msgstr ""
@@ -1034,7 +1044,7 @@ msgstr ""
msgid "Manage/Edit Profiles"
msgstr ""
-#: ../../include/nav.php:78 ../../mod/fbrowser.php:25 ../../boot.php:2107
+#: ../../include/nav.php:78 ../../mod/fbrowser.php:25 ../../boot.php:2119
msgid "Photos"
msgstr ""
@@ -1042,7 +1052,7 @@ msgstr ""
msgid "Your photos"
msgstr ""
-#: ../../include/nav.php:84 ../../boot.php:1367
+#: ../../include/nav.php:84 ../../boot.php:1364
msgid "Login"
msgstr ""
@@ -1063,7 +1073,7 @@ msgstr ""
msgid "Home Page"
msgstr ""
-#: ../../include/nav.php:120 ../../mod/register.php:181 ../../boot.php:1342
+#: ../../include/nav.php:120 ../../mod/register.php:181 ../../boot.php:1339
msgid "Register"
msgstr ""
@@ -1184,7 +1194,7 @@ msgstr ""
msgid "New Message"
msgstr ""
-#: ../../include/nav.php:169 ../../mod/events.php:348 ../../boot.php:2118
+#: ../../include/nav.php:169 ../../mod/events.php:348 ../../boot.php:2130
msgid "Events"
msgstr ""
@@ -1208,7 +1218,7 @@ msgstr ""
msgid "Manage Your Channels"
msgstr ""
-#: ../../include/nav.php:175 ../../mod/settings.php:107
+#: ../../include/nav.php:175 ../../mod/settings.php:120
#: ../../mod/admin.php:728 ../../mod/admin.php:933
msgid "Settings"
msgstr ""
@@ -1262,12 +1272,12 @@ msgstr ""
#: ../../include/attach.php:133 ../../include/attach.php:189
#: ../../include/attach.php:204 ../../include/attach.php:237
#: ../../include/attach.php:251 ../../include/attach.php:272
-#: ../../include/attach.php:464 ../../include/items.php:3298
+#: ../../include/attach.php:464 ../../include/items.php:3316
#: ../../mod/common.php:43 ../../mod/events.php:134 ../../mod/invite.php:13
#: ../../mod/invite.php:102 ../../mod/allfriends.php:10
#: ../../mod/webpages.php:40 ../../mod/api.php:26 ../../mod/api.php:31
#: ../../mod/lastpost.php:93 ../../mod/page.php:33 ../../mod/setup.php:181
-#: ../../mod/settings.php:584 ../../mod/viewconnections.php:33
+#: ../../mod/settings.php:598 ../../mod/viewconnections.php:33
#: ../../mod/viewconnections.php:38 ../../mod/delegate.php:6
#: ../../mod/mitem.php:92 ../../mod/group.php:15 ../../mod/photos.php:74
#: ../../mod/photos.php:644 ../../mod/viewsrc.php:12 ../../mod/menu.php:40
@@ -1302,7 +1312,7 @@ msgstr ""
msgid "Photo storage failed."
msgstr ""
-#: ../../include/photos.php:287 ../../boot.php:2110
+#: ../../include/photos.php:287 ../../boot.php:2122
msgid "Photo Albums"
msgstr ""
@@ -1455,7 +1465,7 @@ msgstr ""
msgid "Sex Addict"
msgstr ""
-#: ../../include/profile_selectors.php:42 ../../include/identity.php:224
+#: ../../include/profile_selectors.php:42 ../../include/identity.php:236
#: ../../mod/network.php:364 ../../mod/connections.php:368
msgid "Friends"
msgstr ""
@@ -1565,11 +1575,11 @@ msgid ""
"Nickname has unsupported characters or is already being used on this site."
msgstr ""
-#: ../../include/identity.php:143
+#: ../../include/identity.php:154
msgid "Unable to retrieve created identity"
msgstr ""
-#: ../../include/identity.php:199
+#: ../../include/identity.php:211
msgid "Default Profile"
msgstr ""
@@ -1593,7 +1603,7 @@ msgstr ""
msgid "Unable to verify channel signature"
msgstr ""
-#: ../../include/zot.php:560
+#: ../../include/zot.php:569
#, php-format
msgid "Unable to verify site signature for %s"
msgstr ""
@@ -1632,7 +1642,7 @@ msgid "Registration request at %s"
msgstr ""
#: ../../include/account.php:274 ../../include/account.php:301
-#: ../../include/account.php:358 ../../boot.php:1207
+#: ../../include/account.php:358 ../../boot.php:1204
msgid "Administrator"
msgstr ""
@@ -1701,7 +1711,7 @@ msgstr ""
msgid "poke"
msgstr ""
-#: ../../include/text.php:742 ../../include/conversation.php:227
+#: ../../include/text.php:742 ../../include/conversation.php:230
msgid "poked"
msgstr ""
@@ -1901,16 +1911,16 @@ msgstr ""
msgid "December"
msgstr ""
-#: ../../include/text.php:1029
+#: ../../include/text.php:1029 ../../mod/message.php:400
msgid "unknown.???"
msgstr ""
-#: ../../include/text.php:1030
+#: ../../include/text.php:1030 ../../mod/message.php:401
msgid "bytes"
msgstr ""
#: ../../include/text.php:1066 ../../include/text.php:1081
-#: ../../include/conversation.php:787
+#: ../../include/conversation.php:804
msgid "remove"
msgstr ""
@@ -1918,11 +1928,11 @@ msgstr ""
msgid "[remove]"
msgstr ""
-#: ../../include/text.php:1069 ../../include/conversation.php:649
+#: ../../include/text.php:1069 ../../include/conversation.php:652
msgid "Categories:"
msgstr ""
-#: ../../include/text.php:1084 ../../include/conversation.php:650
+#: ../../include/text.php:1084 ../../include/conversation.php:653
msgid "Filed under:"
msgstr ""
@@ -2002,11 +2012,11 @@ msgstr ""
msgid "Response from remote channel was incomplete."
msgstr ""
-#: ../../include/follow.php:124
+#: ../../include/follow.php:129
msgid "local account not found."
msgstr ""
-#: ../../include/follow.php:133
+#: ../../include/follow.php:138
msgid "Cannot connect to yourself."
msgstr ""
@@ -2160,19 +2170,19 @@ msgid "Private Message"
msgstr ""
#: ../../include/ItemObject.php:92 ../../mod/webpages.php:81
-#: ../../mod/settings.php:669 ../../mod/menu.php:52
+#: ../../mod/settings.php:683 ../../mod/menu.php:52
#: ../../mod/editwebpage.php:101 ../../mod/editpost.php:76
msgid "Edit"
msgstr ""
-#: ../../include/ItemObject.php:104 ../../include/conversation.php:613
-#: ../../mod/settings.php:670 ../../mod/group.php:182
-#: ../../mod/photos.php:1162 ../../mod/admin.php:640
-#: ../../mod/connections.php:335
+#: ../../include/ItemObject.php:104 ../../include/conversation.php:616
+#: ../../mod/settings.php:684 ../../mod/group.php:182
+#: ../../mod/photos.php:1162 ../../mod/connections.php:335
+#: ../../mod/admin.php:640
msgid "Delete"
msgstr ""
-#: ../../include/ItemObject.php:110 ../../include/conversation.php:612
+#: ../../include/ItemObject.php:110 ../../include/conversation.php:615
msgid "Select"
msgstr ""
@@ -2233,14 +2243,14 @@ msgstr ""
msgid "via Wall-To-Wall:"
msgstr ""
-#: ../../include/ItemObject.php:206 ../../include/conversation.php:659
+#: ../../include/ItemObject.php:206 ../../include/conversation.php:662
#, php-format
msgid " from %s"
msgstr ""
-#: ../../include/ItemObject.php:233 ../../include/conversation.php:678
-#: ../../include/conversation.php:1034 ../../mod/photos.php:1052
-#: ../../mod/message.php:297 ../../mod/message.php:430
+#: ../../include/ItemObject.php:233 ../../include/conversation.php:681
+#: ../../include/conversation.php:1051 ../../mod/photos.php:1052
+#: ../../mod/message.php:298 ../../mod/message.php:461
#: ../../mod/editwebpage.php:110 ../../mod/editpost.php:85
msgid "Please wait"
msgstr ""
@@ -2259,17 +2269,17 @@ msgstr ""
#: ../../include/ItemObject.php:505 ../../mod/events.php:458
#: ../../mod/thing.php:190 ../../mod/invite.php:153 ../../mod/setup.php:283
-#: ../../mod/setup.php:326 ../../mod/settings.php:607
-#: ../../mod/settings.php:719 ../../mod/settings.php:747
-#: ../../mod/settings.php:771 ../../mod/settings.php:842
-#: ../../mod/settings.php:1009 ../../mod/group.php:87 ../../mod/photos.php:675
-#: ../../mod/photos.php:769 ../../mod/photos.php:1031
+#: ../../mod/setup.php:326 ../../mod/settings.php:621
+#: ../../mod/settings.php:733 ../../mod/settings.php:761
+#: ../../mod/settings.php:785 ../../mod/settings.php:856
+#: ../../mod/settings.php:1023 ../../mod/connect.php:96 ../../mod/group.php:87
+#: ../../mod/photos.php:675 ../../mod/photos.php:769 ../../mod/photos.php:1031
#: ../../mod/photos.php:1070 ../../mod/photos.php:1108
-#: ../../mod/photos.php:1135 ../../mod/message.php:298
-#: ../../mod/message.php:429 ../../mod/admin.php:409 ../../mod/admin.php:633
+#: ../../mod/photos.php:1135 ../../mod/message.php:299
+#: ../../mod/message.php:460 ../../mod/connections.php:412
+#: ../../mod/profiles.php:529 ../../mod/admin.php:409 ../../mod/admin.php:633
#: ../../mod/admin.php:769 ../../mod/admin.php:968 ../../mod/admin.php:1055
-#: ../../mod/connections.php:412 ../../mod/profiles.php:529
-#: ../../mod/import.php:356 ../../mod/crepair.php:166 ../../mod/poke.php:166
+#: ../../mod/import.php:381 ../../mod/crepair.php:166 ../../mod/poke.php:166
#: ../../mod/fsuggest.php:108 ../../mod/mood.php:135
#: ../../view/theme/redbasic/php/config.php:136
#: ../../view/theme/redbasic/php/config.php:154
@@ -2309,7 +2319,7 @@ msgstr ""
msgid "Video"
msgstr ""
-#: ../../include/ItemObject.php:514 ../../include/conversation.php:1052
+#: ../../include/ItemObject.php:514 ../../include/conversation.php:1069
#: ../../mod/photos.php:1071 ../../mod/editwebpage.php:130
#: ../../mod/editpost.php:105
msgid "Preview"
@@ -2319,216 +2329,217 @@ msgstr ""
msgid "channel"
msgstr ""
-#: ../../include/conversation.php:155 ../../mod/like.php:133
+#: ../../include/conversation.php:155 ../../mod/like.php:134
#, php-format
msgid "%1$s likes %2$s's %3$s"
msgstr ""
-#: ../../include/conversation.php:158 ../../mod/like.php:135
+#: ../../include/conversation.php:158 ../../mod/like.php:136
#, php-format
msgid "%1$s doesn't like %2$s's %3$s"
msgstr ""
-#: ../../include/conversation.php:192
+#: ../../include/conversation.php:195
#, php-format
msgid "%1$s is now connected with %2$s"
msgstr ""
-#: ../../include/conversation.php:223
+#: ../../include/conversation.php:226
#, php-format
msgid "%1$s poked %2$s"
msgstr ""
-#: ../../include/conversation.php:245 ../../mod/mood.php:63
+#: ../../include/conversation.php:248 ../../mod/mood.php:63
#, php-format
msgid "%1$s is currently %2$s"
msgstr ""
-#: ../../include/conversation.php:637
+#: ../../include/conversation.php:640
#, php-format
msgid "View %s's profile @ %s"
msgstr ""
-#: ../../include/conversation.php:676
+#: ../../include/conversation.php:679
msgid "View in context"
msgstr ""
-#: ../../include/conversation.php:791
+#: ../../include/conversation.php:808
msgid "Loading..."
msgstr ""
-#: ../../include/conversation.php:792
+#: ../../include/conversation.php:809
msgid "Delete Selected Items"
msgstr ""
-#: ../../include/conversation.php:880
+#: ../../include/conversation.php:897
msgid "Follow Thread"
msgstr ""
-#: ../../include/conversation.php:949
+#: ../../include/conversation.php:966
#, php-format
msgid "%s likes this."
msgstr ""
-#: ../../include/conversation.php:949
+#: ../../include/conversation.php:966
#, php-format
msgid "%s doesn't like this."
msgstr ""
-#: ../../include/conversation.php:953
+#: ../../include/conversation.php:970
#, php-format
msgid "%2$d people like this."
msgstr ""
-#: ../../include/conversation.php:955
+#: ../../include/conversation.php:972
#, php-format
msgid "%2$d people don't like this."
msgstr ""
-#: ../../include/conversation.php:961
+#: ../../include/conversation.php:978
msgid "and"
msgstr ""
-#: ../../include/conversation.php:964
+#: ../../include/conversation.php:981
#, php-format
msgid ", and %d other people"
msgstr ""
-#: ../../include/conversation.php:965
+#: ../../include/conversation.php:982
#, php-format
msgid "%s like this."
msgstr ""
-#: ../../include/conversation.php:965
+#: ../../include/conversation.php:982
#, php-format
msgid "%s don't like this."
msgstr ""
-#: ../../include/conversation.php:990
+#: ../../include/conversation.php:1007
msgid "Visible to everybody"
msgstr ""
-#: ../../include/conversation.php:991 ../../mod/message.php:253
-#: ../../mod/message.php:364
+#: ../../include/conversation.php:1008 ../../mod/message.php:253
+#: ../../mod/message.php:365
msgid "Please enter a link URL:"
msgstr ""
-#: ../../include/conversation.php:992
+#: ../../include/conversation.php:1009
msgid "Please enter a video link/URL:"
msgstr ""
-#: ../../include/conversation.php:993
+#: ../../include/conversation.php:1010
msgid "Please enter an audio link/URL:"
msgstr ""
-#: ../../include/conversation.php:994
+#: ../../include/conversation.php:1011
msgid "Tag term:"
msgstr ""
-#: ../../include/conversation.php:995 ../../mod/filer.php:35
+#: ../../include/conversation.php:1012 ../../mod/filer.php:35
msgid "Save to Folder:"
msgstr ""
-#: ../../include/conversation.php:996
+#: ../../include/conversation.php:1013
msgid "Where are you right now?"
msgstr ""
-#: ../../include/conversation.php:1011 ../../mod/photos.php:1051
+#: ../../include/conversation.php:1028 ../../mod/photos.php:1051
msgid "Share"
msgstr ""
-#: ../../include/conversation.php:1013
+#: ../../include/conversation.php:1030
msgid "Page link title"
msgstr ""
-#: ../../include/conversation.php:1015 ../../mod/message.php:295
-#: ../../mod/message.php:427 ../../mod/editwebpage.php:102
+#: ../../include/conversation.php:1032 ../../mod/message.php:295
+#: ../../mod/message.php:457 ../../mod/editwebpage.php:102
#: ../../mod/editpost.php:77
msgid "Upload photo"
msgstr ""
-#: ../../include/conversation.php:1016
+#: ../../include/conversation.php:1033
msgid "upload photo"
msgstr ""
-#: ../../include/conversation.php:1017 ../../mod/editwebpage.php:103
+#: ../../include/conversation.php:1034 ../../mod/message.php:296
+#: ../../mod/message.php:458 ../../mod/editwebpage.php:103
#: ../../mod/editpost.php:78
msgid "Attach file"
msgstr ""
-#: ../../include/conversation.php:1018
+#: ../../include/conversation.php:1035
msgid "attach file"
msgstr ""
-#: ../../include/conversation.php:1019 ../../mod/message.php:296
-#: ../../mod/message.php:428 ../../mod/editwebpage.php:104
+#: ../../include/conversation.php:1036 ../../mod/message.php:297
+#: ../../mod/message.php:459 ../../mod/editwebpage.php:104
#: ../../mod/editpost.php:79
msgid "Insert web link"
msgstr ""
-#: ../../include/conversation.php:1020
+#: ../../include/conversation.php:1037
msgid "web link"
msgstr ""
-#: ../../include/conversation.php:1021
+#: ../../include/conversation.php:1038
msgid "Insert video link"
msgstr ""
-#: ../../include/conversation.php:1022
+#: ../../include/conversation.php:1039
msgid "video link"
msgstr ""
-#: ../../include/conversation.php:1023
+#: ../../include/conversation.php:1040
msgid "Insert audio link"
msgstr ""
-#: ../../include/conversation.php:1024
+#: ../../include/conversation.php:1041
msgid "audio link"
msgstr ""
-#: ../../include/conversation.php:1025 ../../mod/editwebpage.php:108
+#: ../../include/conversation.php:1042 ../../mod/editwebpage.php:108
#: ../../mod/editpost.php:83
msgid "Set your location"
msgstr ""
-#: ../../include/conversation.php:1026
+#: ../../include/conversation.php:1043
msgid "set location"
msgstr ""
-#: ../../include/conversation.php:1027 ../../mod/editwebpage.php:109
+#: ../../include/conversation.php:1044 ../../mod/editwebpage.php:109
#: ../../mod/editpost.php:84
msgid "Clear browser location"
msgstr ""
-#: ../../include/conversation.php:1028
+#: ../../include/conversation.php:1045
msgid "clear location"
msgstr ""
-#: ../../include/conversation.php:1030 ../../mod/editwebpage.php:122
+#: ../../include/conversation.php:1047 ../../mod/editwebpage.php:122
#: ../../mod/editpost.php:97
msgid "Set title"
msgstr ""
-#: ../../include/conversation.php:1033 ../../mod/editwebpage.php:124
+#: ../../include/conversation.php:1050 ../../mod/editwebpage.php:124
#: ../../mod/editpost.php:99
msgid "Categories (comma-separated list)"
msgstr ""
-#: ../../include/conversation.php:1035 ../../mod/editwebpage.php:111
+#: ../../include/conversation.php:1052 ../../mod/editwebpage.php:111
#: ../../mod/editpost.php:86
msgid "Permission settings"
msgstr ""
-#: ../../include/conversation.php:1036
+#: ../../include/conversation.php:1053
msgid "permissions"
msgstr ""
-#: ../../include/conversation.php:1044 ../../mod/editwebpage.php:119
+#: ../../include/conversation.php:1061 ../../mod/editwebpage.php:119
#: ../../mod/editpost.php:94
msgid "Public post"
msgstr ""
-#: ../../include/conversation.php:1046 ../../mod/editwebpage.php:125
+#: ../../include/conversation.php:1063 ../../mod/editwebpage.php:125
#: ../../mod/editpost.php:100
msgid "Example: bob@example.com, mary@example.com"
msgstr ""
@@ -2538,25 +2549,25 @@ msgstr ""
msgid "Permission denied"
msgstr ""
-#: ../../include/items.php:3247 ../../mod/page.php:63 ../../mod/viewsrc.php:18
+#: ../../include/items.php:3265 ../../mod/page.php:63 ../../mod/viewsrc.php:18
#: ../../mod/home.php:64 ../../mod/admin.php:142 ../../mod/admin.php:677
#: ../../mod/admin.php:876 ../../mod/display.php:33
msgid "Item not found."
msgstr ""
-#: ../../include/items.php:3419
+#: ../../include/items.php:3437
msgid "Archives"
msgstr ""
-#: ../../include/items.php:3580 ../../mod/group.php:44 ../../mod/group.php:146
+#: ../../include/items.php:3598 ../../mod/group.php:44 ../../mod/group.php:146
msgid "Collection not found."
msgstr ""
-#: ../../include/items.php:3590
+#: ../../include/items.php:3608
msgid "Collection has no members."
msgstr ""
-#: ../../include/items.php:3606
+#: ../../include/items.php:3624
msgid "Connection not found."
msgstr ""
@@ -2764,7 +2775,7 @@ msgid "Enter email addresses, one per line:"
msgstr ""
#: ../../mod/invite.php:141 ../../mod/message.php:292
-#: ../../mod/message.php:423
+#: ../../mod/message.php:453
msgid "Your message:"
msgstr ""
@@ -2803,7 +2814,8 @@ msgstr ""
msgid "No friends to display."
msgstr ""
-#: ../../mod/webpages.php:8 ../../mod/profile.php:8 ../../boot.php:1540
+#: ../../mod/webpages.php:8 ../../mod/connect.php:13 ../../mod/profile.php:8
+#: ../../boot.php:1537
msgid "Requested profile is not available."
msgstr ""
@@ -2829,16 +2841,16 @@ msgid ""
"and/or create new posts for you?"
msgstr ""
-#: ../../mod/api.php:105 ../../mod/settings.php:964 ../../mod/settings.php:969
-#: ../../mod/settings.php:992 ../../mod/settings.php:994
-#: ../../mod/settings.php:995 ../../mod/settings.php:996
+#: ../../mod/api.php:105 ../../mod/settings.php:978 ../../mod/settings.php:983
+#: ../../mod/settings.php:1006 ../../mod/settings.php:1008
+#: ../../mod/settings.php:1009 ../../mod/settings.php:1010
#: ../../mod/profiles.php:506
msgid "Yes"
msgstr ""
-#: ../../mod/api.php:106 ../../mod/settings.php:964 ../../mod/settings.php:969
-#: ../../mod/settings.php:992 ../../mod/settings.php:994
-#: ../../mod/settings.php:995 ../../mod/settings.php:996
+#: ../../mod/api.php:106 ../../mod/settings.php:978 ../../mod/settings.php:983
+#: ../../mod/settings.php:1006 ../../mod/settings.php:1008
+#: ../../mod/settings.php:1009 ../../mod/settings.php:1010
#: ../../mod/profiles.php:507
msgid "No"
msgstr ""
@@ -3222,423 +3234,427 @@ msgstr ""
msgid "%1$s tagged %2$s's %3$s with %4$s"
msgstr ""
-#: ../../mod/settings.php:49
+#: ../../mod/settings.php:51
msgid "Account settings"
msgstr ""
-#: ../../mod/settings.php:55
+#: ../../mod/settings.php:57
msgid "Channel settings"
msgstr ""
-#: ../../mod/settings.php:61
+#: ../../mod/settings.php:63
msgid "Additional features"
msgstr ""
-#: ../../mod/settings.php:67
+#: ../../mod/settings.php:69
msgid "Feature settings"
msgstr ""
-#: ../../mod/settings.php:73
+#: ../../mod/settings.php:75
msgid "Display settings"
msgstr ""
-#: ../../mod/settings.php:79
+#: ../../mod/settings.php:81
msgid "Connected apps"
msgstr ""
-#: ../../mod/settings.php:85
+#: ../../mod/settings.php:87
msgid "Export channel"
msgstr ""
-#: ../../mod/settings.php:97
+#: ../../mod/settings.php:99
msgid "Automatic Permissions (Advanced)"
msgstr ""
-#: ../../mod/settings.php:145
+#: ../../mod/settings.php:109
+msgid "Premium Channel Settings"
+msgstr ""
+
+#: ../../mod/settings.php:158
msgid "Missing some important data!"
msgstr ""
-#: ../../mod/settings.php:148 ../../mod/settings.php:633
+#: ../../mod/settings.php:161 ../../mod/settings.php:647
msgid "Update"
msgstr ""
-#: ../../mod/settings.php:261
+#: ../../mod/settings.php:274
msgid "Passwords do not match. Password unchanged."
msgstr ""
-#: ../../mod/settings.php:265
+#: ../../mod/settings.php:278
msgid "Empty passwords are not allowed. Password unchanged."
msgstr ""
-#: ../../mod/settings.php:278
+#: ../../mod/settings.php:291
msgid "Password changed."
msgstr ""
-#: ../../mod/settings.php:280
+#: ../../mod/settings.php:293
msgid "Password update failed. Please try again."
msgstr ""
-#: ../../mod/settings.php:294
+#: ../../mod/settings.php:307
msgid "Not valid email."
msgstr ""
-#: ../../mod/settings.php:297
+#: ../../mod/settings.php:310
msgid "Protected email address. Cannot change to that email."
msgstr ""
-#: ../../mod/settings.php:306
+#: ../../mod/settings.php:319
msgid "System failure storing new email. Please try again."
msgstr ""
-#: ../../mod/settings.php:535
+#: ../../mod/settings.php:549
msgid "Settings updated."
msgstr ""
-#: ../../mod/settings.php:606 ../../mod/settings.php:632
-#: ../../mod/settings.php:668
+#: ../../mod/settings.php:620 ../../mod/settings.php:646
+#: ../../mod/settings.php:682
msgid "Add application"
msgstr ""
-#: ../../mod/settings.php:608 ../../mod/settings.php:634
+#: ../../mod/settings.php:622 ../../mod/settings.php:648
#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/fbrowser.php:81
#: ../../mod/fbrowser.php:116
msgid "Cancel"
msgstr ""
-#: ../../mod/settings.php:609 ../../mod/settings.php:635
+#: ../../mod/settings.php:623 ../../mod/settings.php:649
#: ../../mod/admin.php:636 ../../mod/crepair.php:148
msgid "Name"
msgstr ""
-#: ../../mod/settings.php:610 ../../mod/settings.php:636
+#: ../../mod/settings.php:624 ../../mod/settings.php:650
msgid "Consumer Key"
msgstr ""
-#: ../../mod/settings.php:611 ../../mod/settings.php:637
+#: ../../mod/settings.php:625 ../../mod/settings.php:651
msgid "Consumer Secret"
msgstr ""
-#: ../../mod/settings.php:612 ../../mod/settings.php:638
+#: ../../mod/settings.php:626 ../../mod/settings.php:652
msgid "Redirect"
msgstr ""
-#: ../../mod/settings.php:613 ../../mod/settings.php:639
+#: ../../mod/settings.php:627 ../../mod/settings.php:653
msgid "Icon url"
msgstr ""
-#: ../../mod/settings.php:624
+#: ../../mod/settings.php:638
msgid "You can't edit this application."
msgstr ""
-#: ../../mod/settings.php:667
+#: ../../mod/settings.php:681
msgid "Connected Apps"
msgstr ""
-#: ../../mod/settings.php:671
+#: ../../mod/settings.php:685
msgid "Client key starts with"
msgstr ""
-#: ../../mod/settings.php:672
+#: ../../mod/settings.php:686
msgid "No name"
msgstr ""
-#: ../../mod/settings.php:673
+#: ../../mod/settings.php:687
msgid "Remove authorization"
msgstr ""
-#: ../../mod/settings.php:684
+#: ../../mod/settings.php:698
msgid "No feature settings configured"
msgstr ""
-#: ../../mod/settings.php:692
+#: ../../mod/settings.php:706
msgid "Feature Settings"
msgstr ""
-#: ../../mod/settings.php:715
+#: ../../mod/settings.php:729
msgid "Account Settings"
msgstr ""
-#: ../../mod/settings.php:716
+#: ../../mod/settings.php:730
msgid "Password Settings"
msgstr ""
-#: ../../mod/settings.php:717
+#: ../../mod/settings.php:731
msgid "New Password:"
msgstr ""
-#: ../../mod/settings.php:718
+#: ../../mod/settings.php:732
msgid "Confirm:"
msgstr ""
-#: ../../mod/settings.php:718
+#: ../../mod/settings.php:732
msgid "Leave password fields blank unless changing"
msgstr ""
-#: ../../mod/settings.php:720 ../../mod/settings.php:1018
+#: ../../mod/settings.php:734 ../../mod/settings.php:1032
msgid "Email Address:"
msgstr ""
-#: ../../mod/settings.php:721
+#: ../../mod/settings.php:735
msgid "Remove Account"
msgstr ""
-#: ../../mod/settings.php:722
+#: ../../mod/settings.php:736
msgid "Warning: This action is permanent and cannot be reversed."
msgstr ""
-#: ../../mod/settings.php:738
+#: ../../mod/settings.php:752
msgid "Off"
msgstr ""
-#: ../../mod/settings.php:738
+#: ../../mod/settings.php:752
msgid "On"
msgstr ""
-#: ../../mod/settings.php:745
+#: ../../mod/settings.php:759
msgid "Additional Features"
msgstr ""
-#: ../../mod/settings.php:770
+#: ../../mod/settings.php:784
msgid "Connector Settings"
msgstr ""
-#: ../../mod/settings.php:800 ../../mod/admin.php:361
+#: ../../mod/settings.php:814 ../../mod/admin.php:361
msgid "No special theme for mobile devices"
msgstr ""
-#: ../../mod/settings.php:840
+#: ../../mod/settings.php:854
msgid "Display Settings"
msgstr ""
-#: ../../mod/settings.php:846
+#: ../../mod/settings.php:860
msgid "Display Theme:"
msgstr ""
-#: ../../mod/settings.php:847
+#: ../../mod/settings.php:861
msgid "Mobile Theme:"
msgstr ""
-#: ../../mod/settings.php:848
+#: ../../mod/settings.php:862
msgid "Update browser every xx seconds"
msgstr ""
-#: ../../mod/settings.php:848
+#: ../../mod/settings.php:862
msgid "Minimum of 10 seconds, no maximum"
msgstr ""
-#: ../../mod/settings.php:849
+#: ../../mod/settings.php:863
msgid "Maximum number of conversations to load at any time:"
msgstr ""
-#: ../../mod/settings.php:849
+#: ../../mod/settings.php:863
msgid "Maximum of 100 items"
msgstr ""
-#: ../../mod/settings.php:850
+#: ../../mod/settings.php:864
msgid "Don't show emoticons"
msgstr ""
-#: ../../mod/settings.php:886
+#: ../../mod/settings.php:900
msgid "Nobody except yourself"
msgstr ""
-#: ../../mod/settings.php:887
+#: ../../mod/settings.php:901
msgid "Only those you specifically allow"
msgstr ""
-#: ../../mod/settings.php:888
+#: ../../mod/settings.php:902
msgid "Anybody in your address book"
msgstr ""
-#: ../../mod/settings.php:889
+#: ../../mod/settings.php:903
msgid "Anybody on this website"
msgstr ""
-#: ../../mod/settings.php:890
+#: ../../mod/settings.php:904
msgid "Anybody in this network"
msgstr ""
-#: ../../mod/settings.php:891
+#: ../../mod/settings.php:905
msgid "Anybody on the internet"
msgstr ""
-#: ../../mod/settings.php:964
+#: ../../mod/settings.php:978
msgid "Publish your default profile in the network directory"
msgstr ""
-#: ../../mod/settings.php:969
+#: ../../mod/settings.php:983
msgid "Allow us to suggest you as a potential friend to new members?"
msgstr ""
-#: ../../mod/settings.php:973 ../../mod/profile_photo.php:298
+#: ../../mod/settings.php:987 ../../mod/profile_photo.php:298
msgid "or"
msgstr ""
-#: ../../mod/settings.php:978
+#: ../../mod/settings.php:992
msgid "Your channel address is"
msgstr ""
-#: ../../mod/settings.php:989
+#: ../../mod/settings.php:1003
msgid "Automatically expire posts after this many days:"
msgstr ""
-#: ../../mod/settings.php:989
+#: ../../mod/settings.php:1003
msgid "If empty, posts will not expire. Expired posts will be deleted"
msgstr ""
-#: ../../mod/settings.php:990
+#: ../../mod/settings.php:1004
msgid "Advanced expiration settings"
msgstr ""
-#: ../../mod/settings.php:991
+#: ../../mod/settings.php:1005
msgid "Advanced Expiration"
msgstr ""
-#: ../../mod/settings.php:992
+#: ../../mod/settings.php:1006
msgid "Expire posts:"
msgstr ""
-#: ../../mod/settings.php:994
+#: ../../mod/settings.php:1008
msgid "Expire starred posts:"
msgstr ""
-#: ../../mod/settings.php:995
+#: ../../mod/settings.php:1009
msgid "Expire photos:"
msgstr ""
-#: ../../mod/settings.php:996
+#: ../../mod/settings.php:1010
msgid "Only expire posts by others:"
msgstr ""
-#: ../../mod/settings.php:1007
+#: ../../mod/settings.php:1021
msgid "Channel Settings"
msgstr ""
-#: ../../mod/settings.php:1016
+#: ../../mod/settings.php:1030
msgid "Basic Settings"
msgstr ""
-#: ../../mod/settings.php:1019
+#: ../../mod/settings.php:1033
msgid "Your Timezone:"
msgstr ""
-#: ../../mod/settings.php:1020
+#: ../../mod/settings.php:1034
msgid "Default Post Location:"
msgstr ""
-#: ../../mod/settings.php:1021
+#: ../../mod/settings.php:1035
msgid "Use Browser Location:"
msgstr ""
-#: ../../mod/settings.php:1024
+#: ../../mod/settings.php:1038
msgid "Security and Privacy Settings"
msgstr ""
-#: ../../mod/settings.php:1026
+#: ../../mod/settings.php:1040
msgid "Quick Privacy Settings:"
msgstr ""
-#: ../../mod/settings.php:1027
+#: ../../mod/settings.php:1041
msgid "Very Public - extremely permissive"
msgstr ""
-#: ../../mod/settings.php:1028
+#: ../../mod/settings.php:1042
msgid "Typical - default public, privacy when desired"
msgstr ""
-#: ../../mod/settings.php:1029
+#: ../../mod/settings.php:1043
msgid "Private - default private, rarely open or public"
msgstr ""
-#: ../../mod/settings.php:1030
+#: ../../mod/settings.php:1044
msgid "Blocked - default blocked to/from everybody"
msgstr ""
-#: ../../mod/settings.php:1033
+#: ../../mod/settings.php:1047
msgid "Maximum Friend Requests/Day:"
msgstr ""
-#: ../../mod/settings.php:1033
+#: ../../mod/settings.php:1047
msgid "May reduce spam activity"
msgstr ""
-#: ../../mod/settings.php:1034
+#: ../../mod/settings.php:1048
msgid "Default Post Permissions"
msgstr ""
-#: ../../mod/settings.php:1035
+#: ../../mod/settings.php:1049
msgid "(click to open/close)"
msgstr ""
-#: ../../mod/settings.php:1048
+#: ../../mod/settings.php:1062
msgid "Maximum private messages per day from unknown people:"
msgstr ""
-#: ../../mod/settings.php:1048
+#: ../../mod/settings.php:1062
msgid "Useful to reduce spamming"
msgstr ""
-#: ../../mod/settings.php:1051
+#: ../../mod/settings.php:1065
msgid "Notification Settings"
msgstr ""
-#: ../../mod/settings.php:1052
+#: ../../mod/settings.php:1066
msgid "By default post a status message when:"
msgstr ""
-#: ../../mod/settings.php:1053
+#: ../../mod/settings.php:1067
msgid "accepting a friend request"
msgstr ""
-#: ../../mod/settings.php:1054
+#: ../../mod/settings.php:1068
msgid "joining a forum/community"
msgstr ""
-#: ../../mod/settings.php:1055
+#: ../../mod/settings.php:1069
msgid "making an interesting profile change"
msgstr ""
-#: ../../mod/settings.php:1056
+#: ../../mod/settings.php:1070
msgid "Send a notification email when:"
msgstr ""
-#: ../../mod/settings.php:1057
+#: ../../mod/settings.php:1071
msgid "You receive an introduction"
msgstr ""
-#: ../../mod/settings.php:1058
+#: ../../mod/settings.php:1072
msgid "Your introductions are confirmed"
msgstr ""
-#: ../../mod/settings.php:1059
+#: ../../mod/settings.php:1073
msgid "Someone writes on your profile wall"
msgstr ""
-#: ../../mod/settings.php:1060
+#: ../../mod/settings.php:1074
msgid "Someone writes a followup comment"
msgstr ""
-#: ../../mod/settings.php:1061
+#: ../../mod/settings.php:1075
msgid "You receive a private message"
msgstr ""
-#: ../../mod/settings.php:1062
+#: ../../mod/settings.php:1076
msgid "You receive a friend suggestion"
msgstr ""
-#: ../../mod/settings.php:1063
+#: ../../mod/settings.php:1077
msgid "You are tagged in a post"
msgstr ""
-#: ../../mod/settings.php:1064
+#: ../../mod/settings.php:1078
msgid "You are poked/prodded/etc. in a post"
msgstr ""
-#: ../../mod/settings.php:1067
+#: ../../mod/settings.php:1081
msgid "Advanced Account/Page Type Settings"
msgstr ""
-#: ../../mod/settings.php:1068
+#: ../../mod/settings.php:1082
msgid "Change the behaviour of this account for special situations"
msgstr ""
@@ -3677,6 +3693,49 @@ msgstr ""
msgid "Remove"
msgstr ""
+#: ../../mod/connect.php:59 ../../mod/connect.php:107
+msgid "Continue"
+msgstr ""
+
+#: ../../mod/connect.php:88
+msgid "Premium Channel Setup"
+msgstr ""
+
+#: ../../mod/connect.php:90
+msgid "Enable premium channel connection restrictions"
+msgstr ""
+
+#: ../../mod/connect.php:91
+msgid ""
+"Please enter your restrictions or conditions, such as paypal receipt, usage "
+"guidelines, etc."
+msgstr ""
+
+#: ../../mod/connect.php:93 ../../mod/connect.php:113
+msgid ""
+"This channel may require additional steps or acknowledgement of the "
+"following conditions prior to connecting:"
+msgstr ""
+
+#: ../../mod/connect.php:94
+msgid ""
+"Potential connections will then see the following text before proceeding:"
+msgstr ""
+
+#: ../../mod/connect.php:95 ../../mod/connect.php:116
+msgid ""
+"By continuing, I certify that I have complied with any instructions provided "
+"on this page."
+msgstr ""
+
+#: ../../mod/connect.php:104
+msgid "(No specific instructions have been provided by the channel owner.)"
+msgstr ""
+
+#: ../../mod/connect.php:112
+msgid "Restricted or Premium Channel"
+msgstr ""
+
#: ../../mod/delegate.php:95
msgid "No potential page delegates located."
msgstr ""
@@ -4048,11 +4107,11 @@ msgstr ""
msgid "added your channel"
msgstr ""
-#: ../../mod/ping.php:230 ../../boot.php:1737 ../../boot.php:1817
+#: ../../mod/ping.php:230 ../../boot.php:1743 ../../boot.php:1823
msgid "g A l F d"
msgstr ""
-#: ../../mod/ping.php:252 ../../boot.php:1783 ../../boot.php:1858
+#: ../../mod/ping.php:252 ../../boot.php:1789 ../../boot.php:1864
msgid "[today]"
msgstr ""
@@ -4186,41 +4245,41 @@ msgstr ""
msgid "Send Private Message"
msgstr ""
-#: ../../mod/message.php:283 ../../mod/message.php:418
+#: ../../mod/message.php:283 ../../mod/message.php:448
msgid "To:"
msgstr ""
-#: ../../mod/message.php:288 ../../mod/message.php:420
+#: ../../mod/message.php:288 ../../mod/message.php:450
msgid "Subject:"
msgstr ""
-#: ../../mod/message.php:316
+#: ../../mod/message.php:317
msgid "No messages."
msgstr ""
-#: ../../mod/message.php:332 ../../mod/message.php:389
+#: ../../mod/message.php:333 ../../mod/message.php:419
msgid "Delete message"
msgstr ""
-#: ../../mod/message.php:334
+#: ../../mod/message.php:335
msgid "D, d M Y - g:i A"
msgstr ""
-#: ../../mod/message.php:353
+#: ../../mod/message.php:354
msgid "Message not found."
msgstr ""
-#: ../../mod/message.php:411
+#: ../../mod/message.php:441
msgid "Delete conversation"
msgstr ""
-#: ../../mod/message.php:413
+#: ../../mod/message.php:443
msgid ""
"No secure communications available. You may be able to "
"respond from the sender's profile page."
msgstr ""
-#: ../../mod/message.php:417
+#: ../../mod/message.php:447
msgid "Send Reply"
msgstr ""
@@ -4364,524 +4423,16 @@ msgstr ""
msgid "Invalid contact."
msgstr ""
-#: ../../mod/admin.php:48
-msgid "Theme settings updated."
-msgstr ""
-
-#: ../../mod/admin.php:83 ../../mod/admin.php:408
-msgid "Site"
-msgstr ""
-
-#: ../../mod/admin.php:84 ../../mod/admin.php:632 ../../mod/admin.php:644
-msgid "Users"
-msgstr ""
-
-#: ../../mod/admin.php:85 ../../mod/admin.php:726 ../../mod/admin.php:768
-msgid "Plugins"
-msgstr ""
-
-#: ../../mod/admin.php:86 ../../mod/admin.php:931 ../../mod/admin.php:967
-msgid "Themes"
-msgstr ""
-
-#: ../../mod/admin.php:87
-msgid "DB updates"
-msgstr ""
-
-#: ../../mod/admin.php:101 ../../mod/admin.php:108 ../../mod/admin.php:1054
-msgid "Logs"
-msgstr ""
-
-#: ../../mod/admin.php:107
-msgid "Plugin Features"
-msgstr ""
-
-#: ../../mod/admin.php:109
-msgid "User registrations waiting for confirmation"
-msgstr ""
-
-#: ../../mod/admin.php:180
-msgid "Message queues"
-msgstr ""
-
-#: ../../mod/admin.php:185 ../../mod/admin.php:407 ../../mod/admin.php:631
-#: ../../mod/admin.php:725 ../../mod/admin.php:767 ../../mod/admin.php:930
-#: ../../mod/admin.php:966 ../../mod/admin.php:1053
-msgid "Administration"
-msgstr ""
-
-#: ../../mod/admin.php:186
-msgid "Summary"
-msgstr ""
-
-#: ../../mod/admin.php:188
-msgid "Registered users"
-msgstr ""
-
-#: ../../mod/admin.php:190
-msgid "Pending registrations"
-msgstr ""
-
-#: ../../mod/admin.php:191
-msgid "Version"
-msgstr ""
-
-#: ../../mod/admin.php:193
-msgid "Active plugins"
-msgstr ""
-
-#: ../../mod/admin.php:332
-msgid "Site settings updated."
-msgstr ""
-
-#: ../../mod/admin.php:363
-msgid "No special theme for accessibility"
-msgstr ""
-
-#: ../../mod/admin.php:388
-msgid "Closed"
-msgstr ""
-
-#: ../../mod/admin.php:389
-msgid "Requires approval"
-msgstr ""
-
-#: ../../mod/admin.php:390
-msgid "Open"
-msgstr ""
-
-#: ../../mod/admin.php:395
-msgid "Private"
-msgstr ""
-
-#: ../../mod/admin.php:396
-msgid "Paid Access"
-msgstr ""
-
-#: ../../mod/admin.php:397
-msgid "Free Access"
-msgstr ""
-
-#: ../../mod/admin.php:401
-msgid "No SSL policy, links will track page SSL state"
-msgstr ""
-
-#: ../../mod/admin.php:402
-msgid "Force all links to use SSL"
-msgstr ""
-
-#: ../../mod/admin.php:410 ../../mod/register.php:166
-msgid "Registration"
-msgstr ""
-
-#: ../../mod/admin.php:411
-msgid "File upload"
-msgstr ""
-
-#: ../../mod/admin.php:412
-msgid "Policies"
-msgstr ""
-
-#: ../../mod/admin.php:413
-msgid "Advanced"
-msgstr ""
-
-#: ../../mod/admin.php:417
-msgid "Site name"
-msgstr ""
-
-#: ../../mod/admin.php:418
-msgid "Banner/Logo"
-msgstr ""
-
-#: ../../mod/admin.php:419
-msgid "System language"
-msgstr ""
-
-#: ../../mod/admin.php:420
-msgid "System theme"
-msgstr ""
-
-#: ../../mod/admin.php:420
-msgid ""
-"Default system theme - may be over-ridden by user profiles - change theme settings"
-msgstr ""
-
-#: ../../mod/admin.php:421
-msgid "Mobile system theme"
-msgstr ""
-
-#: ../../mod/admin.php:421
-msgid "Theme for mobile devices"
-msgstr ""
-
-#: ../../mod/admin.php:422
-msgid "Accessibility system theme"
-msgstr ""
-
-#: ../../mod/admin.php:422
-msgid "Accessibility theme"
-msgstr ""
-
-#: ../../mod/admin.php:423
-msgid "Channel to use for this website's static pages"
-msgstr ""
-
-#: ../../mod/admin.php:423
-msgid "Site Channel"
-msgstr ""
-
-#: ../../mod/admin.php:424
-msgid "SSL link policy"
-msgstr ""
-
-#: ../../mod/admin.php:424
-msgid "Determines whether generated links should be forced to use SSL"
-msgstr ""
-
-#: ../../mod/admin.php:425
-msgid "Maximum image size"
-msgstr ""
-
-#: ../../mod/admin.php:425
-msgid ""
-"Maximum size in bytes of uploaded images. Default is 0, which means no "
-"limits."
-msgstr ""
-
-#: ../../mod/admin.php:426
-msgid "Register policy"
-msgstr ""
-
-#: ../../mod/admin.php:427
-msgid "Access policy"
-msgstr ""
-
-#: ../../mod/admin.php:428
-msgid "Register text"
-msgstr ""
-
-#: ../../mod/admin.php:428
-msgid "Will be displayed prominently on the registration page."
-msgstr ""
-
-#: ../../mod/admin.php:429
-msgid "Accounts abandoned after x days"
-msgstr ""
-
-#: ../../mod/admin.php:429
-msgid ""
-"Will not waste system resources polling external sites for abandonded "
-"accounts. Enter 0 for no time limit."
-msgstr ""
-
-#: ../../mod/admin.php:430
-msgid "Allowed friend domains"
-msgstr ""
-
-#: ../../mod/admin.php:430
-msgid ""
-"Comma separated list of domains which are allowed to establish friendships "
-"with this site. Wildcards are accepted. Empty to allow any domains"
-msgstr ""
-
-#: ../../mod/admin.php:431
-msgid "Allowed email domains"
-msgstr ""
-
-#: ../../mod/admin.php:431
-msgid ""
-"Comma separated list of domains which are allowed in email addresses for "
-"registrations to this site. Wildcards are accepted. Empty to allow any "
-"domains"
-msgstr ""
-
-#: ../../mod/admin.php:432
-msgid "Block public"
-msgstr ""
-
-#: ../../mod/admin.php:432
-msgid ""
-"Check to block public access to all otherwise public personal pages on this "
-"site unless you are currently logged in."
-msgstr ""
-
-#: ../../mod/admin.php:433
-msgid "Force publish"
-msgstr ""
-
-#: ../../mod/admin.php:433
-msgid ""
-"Check to force all profiles on this site to be listed in the site directory."
-msgstr ""
-
-#: ../../mod/admin.php:435
-msgid "Proxy user"
-msgstr ""
-
-#: ../../mod/admin.php:436
-msgid "Proxy URL"
-msgstr ""
-
-#: ../../mod/admin.php:437
-msgid "Network timeout"
-msgstr ""
-
-#: ../../mod/admin.php:437
-msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
-msgstr ""
-
-#: ../../mod/admin.php:438
-msgid "Delivery interval"
-msgstr ""
-
-#: ../../mod/admin.php:438
-msgid ""
-"Delay background delivery processes by this many seconds to reduce system "
-"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 "
-"for large dedicated servers."
-msgstr ""
-
-#: ../../mod/admin.php:439
-msgid "Poll interval"
-msgstr ""
-
-#: ../../mod/admin.php:439
-msgid ""
-"Delay background polling processes by this many seconds to reduce system "
-"load. If 0, use delivery interval."
-msgstr ""
-
-#: ../../mod/admin.php:440
-msgid "Maximum Load Average"
-msgstr ""
-
-#: ../../mod/admin.php:440
-msgid ""
-"Maximum system load before delivery and poll processes are deferred - "
-"default 50."
-msgstr ""
-
-#: ../../mod/admin.php:456
-msgid "Update has been marked successful"
-msgstr ""
-
-#: ../../mod/admin.php:466
-#, php-format
-msgid "Executing %s failed. Check system logs."
-msgstr ""
-
-#: ../../mod/admin.php:469
-#, php-format
-msgid "Update %s was successfully applied."
-msgstr ""
-
-#: ../../mod/admin.php:473
-#, php-format
-msgid "Update %s did not return a status. Unknown if it succeeded."
-msgstr ""
-
-#: ../../mod/admin.php:476
-#, php-format
-msgid "Update function %s could not be found."
-msgstr ""
-
-#: ../../mod/admin.php:491
-msgid "No failed updates."
-msgstr ""
-
-#: ../../mod/admin.php:495
-msgid "Failed Updates"
-msgstr ""
-
-#: ../../mod/admin.php:497
-msgid "Mark success (if update was manually applied)"
-msgstr ""
-
-#: ../../mod/admin.php:498
-msgid "Attempt to execute this update step automatically"
-msgstr ""
-
-#: ../../mod/admin.php:524
-#, php-format
-msgid "%s user blocked/unblocked"
-msgid_plural "%s users blocked/unblocked"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../../mod/admin.php:531
-#, php-format
-msgid "%s user deleted"
-msgid_plural "%s users deleted"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../../mod/admin.php:562
-msgid "Account not found"
-msgstr ""
-
-#: ../../mod/admin.php:573
-#, php-format
-msgid "User '%s' deleted"
-msgstr ""
-
-#: ../../mod/admin.php:582
-#, php-format
-msgid "User '%s' unblocked"
-msgstr ""
-
-#: ../../mod/admin.php:582
-#, php-format
-msgid "User '%s' blocked"
-msgstr ""
-
-#: ../../mod/admin.php:613
-msgid "Normal Account"
-msgstr ""
-
-#: ../../mod/admin.php:614
-msgid "Soapbox Account"
-msgstr ""
-
-#: ../../mod/admin.php:615
-msgid "Community/Celebrity Account"
-msgstr ""
-
-#: ../../mod/admin.php:616
-msgid "Automatic Friend Account"
-msgstr ""
-
-#: ../../mod/admin.php:634
-msgid "select all"
-msgstr ""
-
-#: ../../mod/admin.php:635
-msgid "User registrations waiting for confirm"
-msgstr ""
-
-#: ../../mod/admin.php:636
-msgid "Request date"
-msgstr ""
-
-#: ../../mod/admin.php:637
-msgid "No registrations."
-msgstr ""
-
-#: ../../mod/admin.php:638 ../../mod/intro.php:11 ../../mod/intro.php:98
+#: ../../mod/intro.php:11 ../../mod/intro.php:98 ../../mod/admin.php:638
#: ../../mod/notifications.php:159 ../../mod/notifications.php:206
msgid "Approve"
msgstr ""
-#: ../../mod/admin.php:639
-msgid "Deny"
-msgstr ""
-
-#: ../../mod/admin.php:641 ../../mod/intro.php:14 ../../mod/intro.php:99
-#: ../../mod/connections.php:309 ../../mod/connections.php:450
+#: ../../mod/intro.php:14 ../../mod/intro.php:99 ../../mod/connections.php:309
+#: ../../mod/connections.php:450 ../../mod/admin.php:641
msgid "Block"
msgstr ""
-#: ../../mod/admin.php:642 ../../mod/connections.php:309
-#: ../../mod/connections.php:450
-msgid "Unblock"
-msgstr ""
-
-#: ../../mod/admin.php:645
-msgid "Register date"
-msgstr ""
-
-#: ../../mod/admin.php:645
-msgid "Last login"
-msgstr ""
-
-#: ../../mod/admin.php:645
-msgid "Service Class"
-msgstr ""
-
-#: ../../mod/admin.php:647
-msgid ""
-"Selected users will be deleted!\\n\\nEverything these users had posted on "
-"this site will be permanently deleted!\\n\\nAre you sure?"
-msgstr ""
-
-#: ../../mod/admin.php:648
-msgid ""
-"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
-"site will be permanently deleted!\\n\\nAre you sure?"
-msgstr ""
-
-#: ../../mod/admin.php:689
-#, php-format
-msgid "Plugin %s disabled."
-msgstr ""
-
-#: ../../mod/admin.php:693
-#, php-format
-msgid "Plugin %s enabled."
-msgstr ""
-
-#: ../../mod/admin.php:703 ../../mod/admin.php:901
-msgid "Disable"
-msgstr ""
-
-#: ../../mod/admin.php:705 ../../mod/admin.php:903
-msgid "Enable"
-msgstr ""
-
-#: ../../mod/admin.php:727 ../../mod/admin.php:932
-msgid "Toggle"
-msgstr ""
-
-#: ../../mod/admin.php:735 ../../mod/admin.php:942
-msgid "Author: "
-msgstr ""
-
-#: ../../mod/admin.php:736 ../../mod/admin.php:943
-msgid "Maintainer: "
-msgstr ""
-
-#: ../../mod/admin.php:865
-msgid "No themes found."
-msgstr ""
-
-#: ../../mod/admin.php:924
-msgid "Screenshot"
-msgstr ""
-
-#: ../../mod/admin.php:972
-msgid "[Experimental]"
-msgstr ""
-
-#: ../../mod/admin.php:973
-msgid "[Unsupported]"
-msgstr ""
-
-#: ../../mod/admin.php:1000
-msgid "Log settings updated."
-msgstr ""
-
-#: ../../mod/admin.php:1056
-msgid "Clear"
-msgstr ""
-
-#: ../../mod/admin.php:1062
-msgid "Debugging"
-msgstr ""
-
-#: ../../mod/admin.php:1063
-msgid "Log file"
-msgstr ""
-
-#: ../../mod/admin.php:1063
-msgid ""
-"Must be writable by web server. Relative to your Red top-level directory."
-msgstr ""
-
-#: ../../mod/admin.php:1064
-msgid "Log level"
-msgstr ""
-
#: ../../mod/intro.php:17 ../../mod/intro.php:100
#: ../../mod/connections.php:316 ../../mod/connections.php:451
#: ../../mod/notifications.php:51 ../../mod/notifications.php:162
@@ -5012,6 +4563,11 @@ msgstr ""
msgid "Fetch updated permissions"
msgstr ""
+#: ../../mod/connections.php:309 ../../mod/connections.php:450
+#: ../../mod/admin.php:642
+msgid "Unblock"
+msgstr ""
+
#: ../../mod/connections.php:312
msgid "Block or Unblock this connection"
msgstr ""
@@ -5562,23 +5118,23 @@ msgstr ""
msgid "Edit/Manage Profiles"
msgstr ""
-#: ../../mod/profiles.php:624 ../../boot.php:1639
+#: ../../mod/profiles.php:624 ../../boot.php:1645
msgid "Change profile photo"
msgstr ""
-#: ../../mod/profiles.php:625 ../../boot.php:1646
+#: ../../mod/profiles.php:625 ../../boot.php:1652
msgid "Create New Profile"
msgstr ""
-#: ../../mod/profiles.php:636 ../../boot.php:1660
+#: ../../mod/profiles.php:636 ../../boot.php:1666
msgid "Profile Image"
msgstr ""
-#: ../../mod/profiles.php:639 ../../boot.php:1663
+#: ../../mod/profiles.php:639 ../../boot.php:1669
msgid "visible to everybody"
msgstr ""
-#: ../../mod/profiles.php:640 ../../boot.php:1664
+#: ../../mod/profiles.php:640 ../../boot.php:1670
msgid "Edit visibility"
msgstr ""
@@ -5619,6 +5175,509 @@ msgid ""
"Or import an existing channel from another location"
msgstr ""
+#: ../../mod/admin.php:48
+msgid "Theme settings updated."
+msgstr ""
+
+#: ../../mod/admin.php:83 ../../mod/admin.php:408
+msgid "Site"
+msgstr ""
+
+#: ../../mod/admin.php:84 ../../mod/admin.php:632 ../../mod/admin.php:644
+msgid "Users"
+msgstr ""
+
+#: ../../mod/admin.php:85 ../../mod/admin.php:726 ../../mod/admin.php:768
+msgid "Plugins"
+msgstr ""
+
+#: ../../mod/admin.php:86 ../../mod/admin.php:931 ../../mod/admin.php:967
+msgid "Themes"
+msgstr ""
+
+#: ../../mod/admin.php:87
+msgid "DB updates"
+msgstr ""
+
+#: ../../mod/admin.php:101 ../../mod/admin.php:108 ../../mod/admin.php:1054
+msgid "Logs"
+msgstr ""
+
+#: ../../mod/admin.php:107
+msgid "Plugin Features"
+msgstr ""
+
+#: ../../mod/admin.php:109
+msgid "User registrations waiting for confirmation"
+msgstr ""
+
+#: ../../mod/admin.php:180
+msgid "Message queues"
+msgstr ""
+
+#: ../../mod/admin.php:185 ../../mod/admin.php:407 ../../mod/admin.php:631
+#: ../../mod/admin.php:725 ../../mod/admin.php:767 ../../mod/admin.php:930
+#: ../../mod/admin.php:966 ../../mod/admin.php:1053
+msgid "Administration"
+msgstr ""
+
+#: ../../mod/admin.php:186
+msgid "Summary"
+msgstr ""
+
+#: ../../mod/admin.php:188
+msgid "Registered users"
+msgstr ""
+
+#: ../../mod/admin.php:190
+msgid "Pending registrations"
+msgstr ""
+
+#: ../../mod/admin.php:191
+msgid "Version"
+msgstr ""
+
+#: ../../mod/admin.php:193
+msgid "Active plugins"
+msgstr ""
+
+#: ../../mod/admin.php:332
+msgid "Site settings updated."
+msgstr ""
+
+#: ../../mod/admin.php:363
+msgid "No special theme for accessibility"
+msgstr ""
+
+#: ../../mod/admin.php:388
+msgid "Closed"
+msgstr ""
+
+#: ../../mod/admin.php:389
+msgid "Requires approval"
+msgstr ""
+
+#: ../../mod/admin.php:390
+msgid "Open"
+msgstr ""
+
+#: ../../mod/admin.php:395
+msgid "Private"
+msgstr ""
+
+#: ../../mod/admin.php:396
+msgid "Paid Access"
+msgstr ""
+
+#: ../../mod/admin.php:397
+msgid "Free Access"
+msgstr ""
+
+#: ../../mod/admin.php:401
+msgid "No SSL policy, links will track page SSL state"
+msgstr ""
+
+#: ../../mod/admin.php:402
+msgid "Force all links to use SSL"
+msgstr ""
+
+#: ../../mod/admin.php:410 ../../mod/register.php:166
+msgid "Registration"
+msgstr ""
+
+#: ../../mod/admin.php:411
+msgid "File upload"
+msgstr ""
+
+#: ../../mod/admin.php:412
+msgid "Policies"
+msgstr ""
+
+#: ../../mod/admin.php:413
+msgid "Advanced"
+msgstr ""
+
+#: ../../mod/admin.php:417
+msgid "Site name"
+msgstr ""
+
+#: ../../mod/admin.php:418
+msgid "Banner/Logo"
+msgstr ""
+
+#: ../../mod/admin.php:419
+msgid "System language"
+msgstr ""
+
+#: ../../mod/admin.php:420
+msgid "System theme"
+msgstr ""
+
+#: ../../mod/admin.php:420
+msgid ""
+"Default system theme - may be over-ridden by user profiles - change theme settings"
+msgstr ""
+
+#: ../../mod/admin.php:421
+msgid "Mobile system theme"
+msgstr ""
+
+#: ../../mod/admin.php:421
+msgid "Theme for mobile devices"
+msgstr ""
+
+#: ../../mod/admin.php:422
+msgid "Accessibility system theme"
+msgstr ""
+
+#: ../../mod/admin.php:422
+msgid "Accessibility theme"
+msgstr ""
+
+#: ../../mod/admin.php:423
+msgid "Channel to use for this website's static pages"
+msgstr ""
+
+#: ../../mod/admin.php:423
+msgid "Site Channel"
+msgstr ""
+
+#: ../../mod/admin.php:424
+msgid "SSL link policy"
+msgstr ""
+
+#: ../../mod/admin.php:424
+msgid "Determines whether generated links should be forced to use SSL"
+msgstr ""
+
+#: ../../mod/admin.php:425
+msgid "Maximum image size"
+msgstr ""
+
+#: ../../mod/admin.php:425
+msgid ""
+"Maximum size in bytes of uploaded images. Default is 0, which means no "
+"limits."
+msgstr ""
+
+#: ../../mod/admin.php:426
+msgid "Register policy"
+msgstr ""
+
+#: ../../mod/admin.php:427
+msgid "Access policy"
+msgstr ""
+
+#: ../../mod/admin.php:428
+msgid "Register text"
+msgstr ""
+
+#: ../../mod/admin.php:428
+msgid "Will be displayed prominently on the registration page."
+msgstr ""
+
+#: ../../mod/admin.php:429
+msgid "Accounts abandoned after x days"
+msgstr ""
+
+#: ../../mod/admin.php:429
+msgid ""
+"Will not waste system resources polling external sites for abandonded "
+"accounts. Enter 0 for no time limit."
+msgstr ""
+
+#: ../../mod/admin.php:430
+msgid "Allowed friend domains"
+msgstr ""
+
+#: ../../mod/admin.php:430
+msgid ""
+"Comma separated list of domains which are allowed to establish friendships "
+"with this site. Wildcards are accepted. Empty to allow any domains"
+msgstr ""
+
+#: ../../mod/admin.php:431
+msgid "Allowed email domains"
+msgstr ""
+
+#: ../../mod/admin.php:431
+msgid ""
+"Comma separated list of domains which are allowed in email addresses for "
+"registrations to this site. Wildcards are accepted. Empty to allow any "
+"domains"
+msgstr ""
+
+#: ../../mod/admin.php:432
+msgid "Block public"
+msgstr ""
+
+#: ../../mod/admin.php:432
+msgid ""
+"Check to block public access to all otherwise public personal pages on this "
+"site unless you are currently logged in."
+msgstr ""
+
+#: ../../mod/admin.php:433
+msgid "Force publish"
+msgstr ""
+
+#: ../../mod/admin.php:433
+msgid ""
+"Check to force all profiles on this site to be listed in the site directory."
+msgstr ""
+
+#: ../../mod/admin.php:435
+msgid "Proxy user"
+msgstr ""
+
+#: ../../mod/admin.php:436
+msgid "Proxy URL"
+msgstr ""
+
+#: ../../mod/admin.php:437
+msgid "Network timeout"
+msgstr ""
+
+#: ../../mod/admin.php:437
+msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
+msgstr ""
+
+#: ../../mod/admin.php:438
+msgid "Delivery interval"
+msgstr ""
+
+#: ../../mod/admin.php:438
+msgid ""
+"Delay background delivery processes by this many seconds to reduce system "
+"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 "
+"for large dedicated servers."
+msgstr ""
+
+#: ../../mod/admin.php:439
+msgid "Poll interval"
+msgstr ""
+
+#: ../../mod/admin.php:439
+msgid ""
+"Delay background polling processes by this many seconds to reduce system "
+"load. If 0, use delivery interval."
+msgstr ""
+
+#: ../../mod/admin.php:440
+msgid "Maximum Load Average"
+msgstr ""
+
+#: ../../mod/admin.php:440
+msgid ""
+"Maximum system load before delivery and poll processes are deferred - "
+"default 50."
+msgstr ""
+
+#: ../../mod/admin.php:456
+msgid "Update has been marked successful"
+msgstr ""
+
+#: ../../mod/admin.php:466
+#, php-format
+msgid "Executing %s failed. Check system logs."
+msgstr ""
+
+#: ../../mod/admin.php:469
+#, php-format
+msgid "Update %s was successfully applied."
+msgstr ""
+
+#: ../../mod/admin.php:473
+#, php-format
+msgid "Update %s did not return a status. Unknown if it succeeded."
+msgstr ""
+
+#: ../../mod/admin.php:476
+#, php-format
+msgid "Update function %s could not be found."
+msgstr ""
+
+#: ../../mod/admin.php:491
+msgid "No failed updates."
+msgstr ""
+
+#: ../../mod/admin.php:495
+msgid "Failed Updates"
+msgstr ""
+
+#: ../../mod/admin.php:497
+msgid "Mark success (if update was manually applied)"
+msgstr ""
+
+#: ../../mod/admin.php:498
+msgid "Attempt to execute this update step automatically"
+msgstr ""
+
+#: ../../mod/admin.php:524
+#, php-format
+msgid "%s user blocked/unblocked"
+msgid_plural "%s users blocked/unblocked"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../mod/admin.php:531
+#, php-format
+msgid "%s user deleted"
+msgid_plural "%s users deleted"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../mod/admin.php:562
+msgid "Account not found"
+msgstr ""
+
+#: ../../mod/admin.php:573
+#, php-format
+msgid "User '%s' deleted"
+msgstr ""
+
+#: ../../mod/admin.php:582
+#, php-format
+msgid "User '%s' unblocked"
+msgstr ""
+
+#: ../../mod/admin.php:582
+#, php-format
+msgid "User '%s' blocked"
+msgstr ""
+
+#: ../../mod/admin.php:613
+msgid "Normal Account"
+msgstr ""
+
+#: ../../mod/admin.php:614
+msgid "Soapbox Account"
+msgstr ""
+
+#: ../../mod/admin.php:615
+msgid "Community/Celebrity Account"
+msgstr ""
+
+#: ../../mod/admin.php:616
+msgid "Automatic Friend Account"
+msgstr ""
+
+#: ../../mod/admin.php:634
+msgid "select all"
+msgstr ""
+
+#: ../../mod/admin.php:635
+msgid "User registrations waiting for confirm"
+msgstr ""
+
+#: ../../mod/admin.php:636
+msgid "Request date"
+msgstr ""
+
+#: ../../mod/admin.php:637
+msgid "No registrations."
+msgstr ""
+
+#: ../../mod/admin.php:639
+msgid "Deny"
+msgstr ""
+
+#: ../../mod/admin.php:645
+msgid "Register date"
+msgstr ""
+
+#: ../../mod/admin.php:645
+msgid "Last login"
+msgstr ""
+
+#: ../../mod/admin.php:645
+msgid "Service Class"
+msgstr ""
+
+#: ../../mod/admin.php:647
+msgid ""
+"Selected users will be deleted!\\n\\nEverything these users had posted on "
+"this site will be permanently deleted!\\n\\nAre you sure?"
+msgstr ""
+
+#: ../../mod/admin.php:648
+msgid ""
+"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
+"site will be permanently deleted!\\n\\nAre you sure?"
+msgstr ""
+
+#: ../../mod/admin.php:689
+#, php-format
+msgid "Plugin %s disabled."
+msgstr ""
+
+#: ../../mod/admin.php:693
+#, php-format
+msgid "Plugin %s enabled."
+msgstr ""
+
+#: ../../mod/admin.php:703 ../../mod/admin.php:901
+msgid "Disable"
+msgstr ""
+
+#: ../../mod/admin.php:705 ../../mod/admin.php:903
+msgid "Enable"
+msgstr ""
+
+#: ../../mod/admin.php:727 ../../mod/admin.php:932
+msgid "Toggle"
+msgstr ""
+
+#: ../../mod/admin.php:735 ../../mod/admin.php:942
+msgid "Author: "
+msgstr ""
+
+#: ../../mod/admin.php:736 ../../mod/admin.php:943
+msgid "Maintainer: "
+msgstr ""
+
+#: ../../mod/admin.php:865
+msgid "No themes found."
+msgstr ""
+
+#: ../../mod/admin.php:924
+msgid "Screenshot"
+msgstr ""
+
+#: ../../mod/admin.php:972
+msgid "[Experimental]"
+msgstr ""
+
+#: ../../mod/admin.php:973
+msgid "[Unsupported]"
+msgstr ""
+
+#: ../../mod/admin.php:1000
+msgid "Log settings updated."
+msgstr ""
+
+#: ../../mod/admin.php:1056
+msgid "Clear"
+msgstr ""
+
+#: ../../mod/admin.php:1062
+msgid "Debugging"
+msgstr ""
+
+#: ../../mod/admin.php:1063
+msgid "Log file"
+msgstr ""
+
+#: ../../mod/admin.php:1063
+msgid ""
+"Must be writable by web server. Relative to your Red top-level directory."
+msgstr ""
+
+#: ../../mod/admin.php:1064
+msgid "Log level"
+msgstr ""
+
#: ../../mod/lostpass.php:15
msgid "No valid account found."
msgstr ""
@@ -5643,7 +5702,7 @@ msgid ""
"Password reset failed."
msgstr ""
-#: ../../mod/lostpass.php:85 ../../boot.php:1377
+#: ../../mod/lostpass.php:85 ../../boot.php:1374
msgid "Password Reset"
msgstr ""
@@ -5717,19 +5776,19 @@ msgstr ""
msgid "Cloned channel not found. Import failed."
msgstr ""
-#: ../../mod/import.php:327
+#: ../../mod/import.php:352
msgid "Import completed."
msgstr ""
-#: ../../mod/import.php:340
+#: ../../mod/import.php:365
msgid "You must be logged in to use this feature."
msgstr ""
-#: ../../mod/import.php:345
+#: ../../mod/import.php:370
msgid "Import Channel"
msgstr ""
-#: ../../mod/import.php:346
+#: ../../mod/import.php:371
msgid ""
"Use this form to import an existing channel from a different server/hub. You "
"may retrieve the channel identity from the old server/hub via the network or "
@@ -5737,27 +5796,27 @@ msgid ""
"imported. Importation of content is not yet available."
msgstr ""
-#: ../../mod/import.php:347
+#: ../../mod/import.php:372
msgid "File to Upload"
msgstr ""
-#: ../../mod/import.php:348
+#: ../../mod/import.php:373
msgid "Or provide the old server/hub details"
msgstr ""
-#: ../../mod/import.php:349
+#: ../../mod/import.php:374
msgid "Your old identity address (xyz@example.com)"
msgstr ""
-#: ../../mod/import.php:350
+#: ../../mod/import.php:375
msgid "Your old login email address"
msgstr ""
-#: ../../mod/import.php:351
+#: ../../mod/import.php:376
msgid "Your old login password"
msgstr ""
-#: ../../mod/import.php:352
+#: ../../mod/import.php:377
msgid ""
"For either option, please choose whether to make this hub your new primary "
"address, or whether your old location should continue this role. You will be "
@@ -5765,7 +5824,7 @@ msgid ""
"location for files, photos, and media."
msgstr ""
-#: ../../mod/import.php:353
+#: ../../mod/import.php:378
msgid "Make this hub my primary location"
msgstr ""
@@ -5874,7 +5933,7 @@ msgstr ""
msgid "invalid target signature"
msgstr ""
-#: ../../mod/follow.php:24
+#: ../../mod/follow.php:25
msgid "Channel added."
msgstr ""
@@ -6396,104 +6455,104 @@ msgstr ""
msgid "0-99 default: 5"
msgstr ""
-#: ../../boot.php:1201
+#: ../../boot.php:1198
#, php-format
msgid "Update %s failed. See error logs."
msgstr ""
-#: ../../boot.php:1204
+#: ../../boot.php:1201
#, php-format
msgid "Update Error at %s"
msgstr ""
-#: ../../boot.php:1341
+#: ../../boot.php:1338
msgid "Create a New Account"
msgstr ""
-#: ../../boot.php:1370
+#: ../../boot.php:1367
msgid "Password"
msgstr ""
-#: ../../boot.php:1371
+#: ../../boot.php:1368
msgid "Remember me"
msgstr ""
-#: ../../boot.php:1376
+#: ../../boot.php:1373
msgid "Forgot your password?"
msgstr ""
-#: ../../boot.php:1495
+#: ../../boot.php:1492
msgid "Requested channel is not available."
msgstr ""
-#: ../../boot.php:1507
+#: ../../boot.php:1504
msgid " Sorry, you don't have the permission to view this profile. "
msgstr ""
-#: ../../boot.php:1645
+#: ../../boot.php:1651
msgid "Profiles"
msgstr ""
-#: ../../boot.php:1645
+#: ../../boot.php:1651
msgid "Manage/edit profiles"
msgstr ""
-#: ../../boot.php:1649
+#: ../../boot.php:1655
msgid "Edit Profile"
msgstr ""
-#: ../../boot.php:1738 ../../boot.php:1818
+#: ../../boot.php:1744 ../../boot.php:1824
msgid "F d"
msgstr ""
-#: ../../boot.php:1795
+#: ../../boot.php:1801
msgid "Birthday Reminders"
msgstr ""
-#: ../../boot.php:1796
+#: ../../boot.php:1802
msgid "Birthdays this week:"
msgstr ""
-#: ../../boot.php:1851
+#: ../../boot.php:1857
msgid "[No description]"
msgstr ""
-#: ../../boot.php:1869
+#: ../../boot.php:1875
msgid "Event Reminders"
msgstr ""
-#: ../../boot.php:1870
+#: ../../boot.php:1876
msgid "Events this week:"
msgstr ""
-#: ../../boot.php:2093
+#: ../../boot.php:2105
msgid "Channel"
msgstr ""
-#: ../../boot.php:2096
+#: ../../boot.php:2108
msgid "Status Messages and Posts"
msgstr ""
-#: ../../boot.php:2100
+#: ../../boot.php:2112
msgid "About"
msgstr ""
-#: ../../boot.php:2103
+#: ../../boot.php:2115
msgid "Profile Details"
msgstr ""
-#: ../../boot.php:2121
+#: ../../boot.php:2133
msgid "Events and Calendar"
msgstr ""
-#: ../../boot.php:2126
+#: ../../boot.php:2138
msgid "Webpages"
msgstr ""
-#: ../../boot.php:2129
+#: ../../boot.php:2141
msgid "Manage Webpages"
msgstr ""
-#: ../../boot.php:2356
+#: ../../boot.php:2368
msgid "toggle mobile"
msgstr ""
diff --git a/version.inc b/version.inc
index eef8ef12b..41f5190b7 100644
--- a/version.inc
+++ b/version.inc
@@ -1 +1 @@
-2013-08-22.413
+2013-08-24.415