diff --git a/Zotlabs/Daemon/Cron_weekly.php b/Zotlabs/Daemon/Cron_weekly.php
index dc781ad73..1d8420947 100644
--- a/Zotlabs/Daemon/Cron_weekly.php
+++ b/Zotlabs/Daemon/Cron_weekly.php
@@ -21,7 +21,6 @@ class Cron_weekly {
require_once('include/hubloc.php');
prune_hub_reinstalls();
- require_once('include/Contact.php');
mark_orphan_hubsxchans();
diff --git a/Zotlabs/Daemon/Externals.php b/Zotlabs/Daemon/Externals.php
index 167b0524f..24cfe64ec 100644
--- a/Zotlabs/Daemon/Externals.php
+++ b/Zotlabs/Daemon/Externals.php
@@ -3,7 +3,7 @@
namespace Zotlabs\Daemon;
require_once('include/zot.php');
-require_once('include/identity.php');
+require_once('include/channel.php');
class Externals {
diff --git a/Zotlabs/Daemon/Notifier.php b/Zotlabs/Daemon/Notifier.php
index 65690f8ce..590be31ee 100644
--- a/Zotlabs/Daemon/Notifier.php
+++ b/Zotlabs/Daemon/Notifier.php
@@ -72,8 +72,7 @@ require_once('include/queue_fn.php');
require_once('include/datetime.php');
require_once('include/items.php');
require_once('include/bbcode.php');
-require_once('include/identity.php');
-require_once('include/Contact.php');
+require_once('include/channel.php');
class Notifier {
diff --git a/Zotlabs/Daemon/Onepoll.php b/Zotlabs/Daemon/Onepoll.php
index 2610ad151..036a4991b 100644
--- a/Zotlabs/Daemon/Onepoll.php
+++ b/Zotlabs/Daemon/Onepoll.php
@@ -4,7 +4,7 @@ namespace Zotlabs\Daemon;
require_once('include/zot.php');
require_once('include/socgraph.php');
-require_once('include/Contact.php');
+
class Onepoll {
diff --git a/Zotlabs/Daemon/Ratenotif.php b/Zotlabs/Daemon/Ratenotif.php
index a404273e2..1cba5e26d 100644
--- a/Zotlabs/Daemon/Ratenotif.php
+++ b/Zotlabs/Daemon/Ratenotif.php
@@ -12,7 +12,6 @@ class Ratenotif {
require_once("datetime.php");
require_once('include/items.php');
- require_once('include/Contact.php');
if($argc < 3)
return;
diff --git a/Zotlabs/Lib/ThreadStream.php b/Zotlabs/Lib/ThreadStream.php
index 2bcf167e9..a6d4f8517 100644
--- a/Zotlabs/Lib/ThreadStream.php
+++ b/Zotlabs/Lib/ThreadStream.php
@@ -165,7 +165,7 @@ class ThreadStream {
$item->set_commentable(can_comment_on_post($this->observer['xchan_hash'],$item->data));
}
}
- require_once('include/identity.php');
+ require_once('include/channel.php');
$item->set_conversation($this);
$this->threads[] = $item;
diff --git a/Zotlabs/Module/Admin.php b/Zotlabs/Module/Admin.php
index cd6e45e9f..172b109c8 100644
--- a/Zotlabs/Module/Admin.php
+++ b/Zotlabs/Module/Admin.php
@@ -902,7 +902,6 @@ class Admin extends \Zotlabs\Web\Controller {
}
// account delete button was submitted
if (x($_POST, 'page_users_delete')) {
- require_once('include/Contact.php');
foreach ($users as $uid){
account_remove($uid, true, false);
}
@@ -951,7 +950,6 @@ class Admin extends \Zotlabs\Web\Controller {
switch (argv(2)){
case 'delete':
// delete user
- require_once('include/Contact.php');
account_remove($uid,true,false);
notice( sprintf(t("Account '%s' deleted"), $account[0]['account_email']) . EOL);
@@ -1096,7 +1094,6 @@ class Admin extends \Zotlabs\Web\Controller {
notice( sprintf( tt("%s channel code allowed/disallowed", "%s channels code allowed/disallowed", count($channels)), count($channels)) );
}
if (x($_POST,'page_channels_delete')){
- require_once("include/Contact.php");
foreach($channels as $uid){
channel_remove($uid,true);
}
@@ -1128,7 +1125,6 @@ class Admin extends \Zotlabs\Web\Controller {
case "delete":{
check_form_security_token_redirectOnErr('/admin/channels', 'admin_channels', 't');
// delete channel
- require_once("include/Contact.php");
channel_remove($uid,true);
notice( sprintf(t("Channel '%s' deleted"), $channel[0]['channel_name']) . EOL);
diff --git a/Zotlabs/Module/Blocks.php b/Zotlabs/Module/Blocks.php
index ed702befb..32650a090 100644
--- a/Zotlabs/Module/Blocks.php
+++ b/Zotlabs/Module/Blocks.php
@@ -1,7 +1,7 @@
disabled())) {
$r = null;
- require_once('include/identity.php');
+ require_once('include/channel.php');
$sys = get_sys_channel();
$sysid = $sys['channel_id'];
@@ -233,7 +233,7 @@ class Display extends \Zotlabs\Web\Controller {
elseif($update && !$load) {
$r = null;
- require_once('include/identity.php');
+ require_once('include/channel.php');
$sys = get_sys_channel();
$sysid = $sys['channel_id'];
diff --git a/Zotlabs/Module/Editblock.php b/Zotlabs/Module/Editblock.php
index a79962033..fb86557f2 100644
--- a/Zotlabs/Module/Editblock.php
+++ b/Zotlabs/Module/Editblock.php
@@ -1,7 +1,7 @@
1) {
$channel = \App::get_channel();
- require_once('include/identity.php');
+ require_once('include/channel.php');
if(argc() > 1 && intval(argv(1)) > 1900) {
$year = intval(argv(1));
diff --git a/Zotlabs/Module/Viewconnections.php b/Zotlabs/Module/Viewconnections.php
index a9445cdeb..d58c431e5 100644
--- a/Zotlabs/Module/Viewconnections.php
+++ b/Zotlabs/Module/Viewconnections.php
@@ -2,8 +2,6 @@
namespace Zotlabs\Module;
require_once('include/selectors.php');
-require_once('include/Contact.php');
-
class Viewconnections extends \Zotlabs\Web\Controller {
@@ -16,7 +14,7 @@ class Viewconnections extends \Zotlabs\Web\Controller {
profile_load($a,argv(1));
}
- function get() {
+ function get() {
if((get_config('system','block_public')) && (! local_channel()) && (! remote_channel())) {
notice( t('Public access denied.') . EOL);
diff --git a/Zotlabs/Module/Wall_attach.php b/Zotlabs/Module/Wall_attach.php
index 5bdecfa75..9a1019ddb 100644
--- a/Zotlabs/Module/Wall_attach.php
+++ b/Zotlabs/Module/Wall_attach.php
@@ -2,7 +2,7 @@
namespace Zotlabs\Module;
require_once('include/attach.php');
-require_once('include/identity.php');
+require_once('include/channel.php');
require_once('include/photos.php');
diff --git a/Zotlabs/Module/Wall_upload.php b/Zotlabs/Module/Wall_upload.php
index fff3ed03a..3868cb14e 100644
--- a/Zotlabs/Module/Wall_upload.php
+++ b/Zotlabs/Module/Wall_upload.php
@@ -2,7 +2,7 @@
namespace Zotlabs\Module;
require_once('include/photo/photo_driver.php');
-require_once('include/identity.php');
+require_once('include/channel.php');
require_once('include/photos.php');
diff --git a/Zotlabs/Module/Webpages.php b/Zotlabs/Module/Webpages.php
index d8adb55b2..bb8d454c8 100644
--- a/Zotlabs/Module/Webpages.php
+++ b/Zotlabs/Module/Webpages.php
@@ -1,7 +1,7 @@
true) or array('success' => false);
*/
static public function run($webbie, $channel = null, $autofallback = true) {
@@ -108,7 +108,7 @@ class Finger {
$x = json_decode($result['body'],true);
if($x) {
- $signed_token = $x['signed_token'];
+ $signed_token = ((is_array($x) && array_key_exists('signed_token',$x)) ? $x['signed_token'] : null);
if($signed_token) {
$valid = rsa_verify(self::$token,base64url_decode($signed_token),$x['key']);
if(! $valid) {
diff --git a/boot.php b/boot.php
index e7e962b8e..25551346b 100755
--- a/boot.php
+++ b/boot.php
@@ -39,14 +39,14 @@ require_once('include/permissions.php');
require_once('library/Mobile_Detect/Mobile_Detect.php');
require_once('include/features.php');
require_once('include/taxonomy.php');
-require_once('include/identity.php');
-require_once('include/Contact.php');
+require_once('include/channel.php');
+require_once('include/connections.php');
require_once('include/account.php');
define ( 'PLATFORM_NAME', 'hubzilla' );
define ( 'STD_VERSION', '1.7.1' );
-define ( 'ZOT_REVISION', 1 );
+define ( 'ZOT_REVISION', 1.1 );
define ( 'DB_UPDATE_VERSION', 1168 );
diff --git a/doc/hooks.html b/doc/hooks.html
index c05de58ef..f4a5a7630 100644
--- a/doc/hooks.html
+++ b/doc/hooks.html
@@ -1 +1 @@
-
Hooks
Function | Source File | Arg |
| | |
| | |
| | |
$a->module . _mod_aftercontent | index.php | $arr |
$a->module . _mod_content | index.php | $arr |
$a->module . _mod_init | index.php | $placeholder |
$a->module . _mod_post | index.php | $_POST |
$a->module . _post_ . $selname | include/acl_selectors.php | $o |
$a->module . _post_ . $selname | include/acl_selectors.php | $o |
$a->module . _post_ . $selname | include/acl_selectors.php | $o |
$a->module . _pre_ . $selname | include/acl_selectors.php | $arr |
$a->module . _pre_ . $selname | include/acl_selectors.php | $arr |
$a->module . _pre_ . $selname | include/acl_selectors.php | $arr |
$name | include/plugin.php | &$data = null |
about_hook | mod/siteinfo.php | $o |
accept_follow | mod/connedit.php | $arr |
account_downgrade | include/account.php | $ret |
account_downgrade | include/account.php | $ret |
account_settings | mod/settings.php | $account_settings |
activity_received | include/zot.php | $parr |
affinity_labels | include/widgets.php | $labels |
affinity_labels | mod/connedit.php | $labels |
api_perm_is_allowed | include/permissions.php | $arr |
app_menu | index.php | $arr |
atom_author | include/items.php | $o |
atom_entry | include/items.php | $o |
atom_feed | include/items.php | $atom |
atom_feed_end | include/items.php | $atom |
attach_upload_file | include/attach.php | $f |
authenticate | include/auth.php | $addon_auth |
avatar_lookup | include/network.php | $avatar |
bb2diaspora | include/bb2diaspora.php | $Text |
bbcode | include/bbcode.php | $Text |
channel_remove | include/Contact.php | $r[0] |
chat_message | include/chat.php | $arr |
chat_post | mod/chatsvc.php | $arr |
check_account_email | include/account.php | $arr |
check_account_invite | include/account.php | $arr |
check_account_password | include/account.php | $arr |
connect_premium | mod/connect.php | $arr |
connector_settings | mod/settings.php | $settings_connectors |
construct_page | boot.php | $arr |
contact_block_end | include/text.php | $arr |
contact_edit | mod/connedit.php | $arr |
contact_edit_post | mod/connedit.php | $_POST |
contact_select_options | include/acl_selectors.php | $x |
conversation_start | include/conversation.php | $cb |
create_identity | include/identity.php | $newuid |
cron | include/cronhooks.php | $d |
cron_daily | include/poller.php | datetime_convert() |
cron_weekly | include/poller.php | datetime_convert() |
directory_item | mod/directory.php | $arr |
discover_by_webbie | include/network.php | $arr |
display_item | include/ItemObject.php | $arr |
display_item | include/conversation.php | $arr |
display_settings | mod/settings.php | $o |
display_settings_post | mod/settings.php | $_POST |
donate_contributors | extend/addon/matrix/donate/donate.php | $contributors |
donate_plugin | extend/addon/matrix/donate/donate.php | $o |
donate_sponsors | extend/addon/matrix/donate/donate.php | $sponsors |
dreport_is_storable | include/zot.php | $dr |
drop_item | include/items.php | $arr |
enotify | include/enotify.php | $h |
enotify_mail | include/enotify.php | $datarray |
enotify_store | include/enotify.php | $datarray |
event_created | include/event.php | $event[id] |
event_updated | include/event.php | $event[id] |
externals_url_select | include/externals.php | $arr |
feature_enabled | include/features.php | $arr |
feature_settings | mod/settings.php | $settings_addons |
feature_settings_post | mod/settings.php | $_POST |
follow | include/follow.php | $arr |
follow | include/follow.php | $arr |
follow_allow | include/follow.php | $x |
gender_selector | include/profile_selectors.php | $select |
gender_selector_min | include/profile_selectors.php | $select |
generate_map | include/text.php | $arr |
generate_named_map | include/text.php | $arr |
get_all_api_perms | include/permissions.php | $arr |
get_all_perms | include/permissions.php | $arr |
get_features | include/features.php | $arr |
get_role_perms | include/permissions.php | $ret |
get_widgets | boot.php | $arr |
get_widgets | boot.php | $arr |
global_permissions | include/permissions.php | $ret |
home_content | mod/home.php | $o |
home_init | mod/home.php | $ret |
hostxrd | mod/hostxrd.php | $arr |
html2bbcode | include/html2bbcode.php | $message |
identity_basic_export | include/identity.php | $addon |
import_author_xchan | include/items.php | $arr |
import_channel | mod/import.php | $addon |
import_directory_profile | include/zot.php | $d |
import_xchan | include/zot.php | $arr |
item_photo_menu | include/conversation.php | $args |
item_store | include/items.php | $d |
item_store | include/items.php | $arr |
item_store_update | include/items.php | $d |
item_translate | include/items.php | $translate |
item_translate | include/items.php | $translate |
jot_networks | include/acl_selectors.php | $jotnets |
jot_networks | include/conversation.php | $jotnets |
jot_networks | mod/editblock.php | $jotnets |
jot_networks | mod/editpost.php | $jotnets |
jot_networks | mod/editwebpage.php | $jotnets |
jot_networks | mod/editlayout.php | $jotnets |
jot_tool | include/conversation.php | $jotplugins |
jot_tool | mod/editblock.php | $jotplugins |
jot_tool | mod/editpost.php | $jotplugins |
jot_tool | mod/editwebpage.php | $jotplugins |
jot_tool | mod/editlayout.php | $jotplugins |
load_pdl | boot.php | $arr |
local_dir_update | include/dir_fns.php | $arr |
logged_in | include/oauth.php | $a->user |
logged_in | include/api.php | $a->user |
logged_in | include/security.php | $a->account |
logged_in | include/security.php | $user_record |
logging_out | include/auth.php | $args |
login_hook | boot.php | $o |
magic_auth | mod/magic.php | $arr |
magic_auth_openid_success | mod/openid.php | $arr |
magic_auth_openid_success | mod/openid.php | $arr |
magic_auth_success | mod/post.php | $arr |
main_slider | include/widgets.php | $arr |
marital_selector | include/profile_selectors.php | $select |
marital_selector_min | include/profile_selectors.php | $select |
module_loaded | index.php | $x |
mood_verbs | include/text.php | $arr |
nav | include/nav.php | $x |
network_content_init | mod/network.php | $arr |
network_ping | mod/ping.php | $arr |
network_tabs | include/conversation.php | $arr |
network_to_name | include/contact_selectors.php | $nets |
notifier_end | include/notifier.php | $target_item |
notifier_hub | include/notifier.php | $narr |
notifier_normal | include/deliver_hooks.php | $r[0] |
obj_verbs | include/taxonomy.php | $arr |
oembed_probe | include/oembed.php | $x |
page_content_top | index.php | $a->page[content] |
page_end | index.php | $a->page[content] |
page_header | include/nav.php | $a->page[nav] |
parse_atom | include/items.php | $arr |
parse_link | mod/linkinfo.php | $arr |
pdl_selector | include/comanche.php | $arr |
perm_is_allowed | include/permissions.php | $arr |
permissions_create | include/notifier.php | $perm_update |
permissions_update | include/notifier.php | $perm_update |
personal_xrd | mod/xrd.php | $arr |
photo_post_end | include/photos.php | $ret |
photo_post_end | include/photos.php | $ret |
photo_upload_begin | include/attach.php | $arr |
photo_upload_begin | include/photos.php | $args |
photo_upload_end | include/attach.php | $ret |
photo_upload_end | include/attach.php | $ret |
photo_upload_end | include/attach.php | $ret |
photo_upload_end | include/attach.php | $ret |
photo_upload_end | include/attach.php | $ret |
photo_upload_end | include/photos.php | $ret |
photo_upload_end | include/photos.php | $ret |
photo_upload_end | include/photos.php | $ret |
photo_upload_end | include/photos.php | $ret |
photo_upload_file | include/attach.php | $f |
photo_upload_file | include/photos.php | $f |
photo_upload_form | mod/photos.php | $ret |
poke_verbs | include/text.php | $arr |
post_local | include/zot.php | $arr |
post_local | include/items.php | $arr |
post_local | mod/item.php | $datarray |
post_local_end | include/items.php | $arr |
post_local_end | include/attach.php | $arr |
post_local_end | include/attach.php | $arr |
post_local_end | extend/addon/matrix/randpost/randpost.php | $x |
post_local_end | extend/addon/matrix/randpost/randpost.php | $x |
post_local_end | mod/mood.php | $arr |
post_local_end | mod/like.php | $arr |
post_local_end | mod/item.php | $datarray |
post_local_end | mod/subthread.php | $arr |
post_local_start | mod/item.php | $_REQUEST |
post_mail | include/items.php | $arr |
post_mail_end | include/items.php | $arr |
post_remote | include/items.php | $arr |
post_remote_end | include/items.php | $arr |
post_remote_update | include/items.php | $arr |
post_remote_update_end | include/items.php | $arr |
prepare_body | include/text.php | $prep_arr |
prepare_body_final | include/text.php | $prep_arr |
prepare_body_init | include/text.php | $item |
probe_well_known | include/probe.php | $ret |
proc_run | boot.php | $arr |
process_channel_sync_delivery | include/zot.php | $addon |
profile_advanced | mod/profile.php | $o |
profile_edit | mod/profiles.php | $arr |
profile_photo_content_end | mod/profile_photo.php | $o |
profile_post | mod/profiles.php | $_POST |
profile_sidebar | include/identity.php | $arr |
profile_sidebar_enter | include/identity.php | $profile |
profile_tabs | include/conversation.php | $arr |
register_account | include/account.php | $result |
render_location | include/conversation.php | $locate |
replace_macros | include/text.php | $arr |
reverse_magic_auth | mod/rmagic.php | $arr |
settings_account | mod/settings.php | $_POST |
settings_form | mod/settings.php | $o |
settings_post | mod/settings.php | $_POST |
sexpref_selector | include/profile_selectors.php | $select |
sexpref_selector_min | include/profile_selectors.php | $select |
smilie | include/text.php | $params |
smilie | extend/addon/matrix/smileybutton/smileybutton.php | $params |
tagged | include/items.php | $arr |
validate_channelname | include/identity.php | $arr |
webfinger | mod/wfinger.php | $arr |
well_known | mod/_well_known.php | $arr |
zid | include/identity.php | $arr |
zid_init | include/identity.php | $arr |
zot_finger | include/zot.php | $ret |
Generated Tue Nov 03 21:19:02 PST 2015
\ No newline at end of file
+Hooks
Function | Source File | Arg |
| | |
| | |
| | |
$a->module . _mod_aftercontent | index.php | $arr |
$a->module . _mod_content | index.php | $arr |
$a->module . _mod_init | index.php | $placeholder |
$a->module . _mod_post | index.php | $_POST |
$a->module . _post_ . $selname | include/acl_selectors.php | $o |
$a->module . _post_ . $selname | include/acl_selectors.php | $o |
$a->module . _post_ . $selname | include/acl_selectors.php | $o |
$a->module . _pre_ . $selname | include/acl_selectors.php | $arr |
$a->module . _pre_ . $selname | include/acl_selectors.php | $arr |
$a->module . _pre_ . $selname | include/acl_selectors.php | $arr |
$name | include/plugin.php | &$data = null |
about_hook | mod/siteinfo.php | $o |
accept_follow | mod/connedit.php | $arr |
account_downgrade | include/account.php | $ret |
account_downgrade | include/account.php | $ret |
account_settings | mod/settings.php | $account_settings |
activity_received | include/zot.php | $parr |
affinity_labels | include/widgets.php | $labels |
affinity_labels | mod/connedit.php | $labels |
api_perm_is_allowed | include/permissions.php | $arr |
app_menu | index.php | $arr |
atom_author | include/items.php | $o |
atom_entry | include/items.php | $o |
atom_feed | include/items.php | $atom |
atom_feed_end | include/items.php | $atom |
attach_upload_file | include/attach.php | $f |
authenticate | include/auth.php | $addon_auth |
avatar_lookup | include/network.php | $avatar |
bb2diaspora | include/bb2diaspora.php | $Text |
bbcode | include/bbcode.php | $Text |
channel_remove | include/Contact.php | $r[0] |
chat_message | include/chat.php | $arr |
chat_post | mod/chatsvc.php | $arr |
check_account_email | include/account.php | $arr |
check_account_invite | include/account.php | $arr |
check_account_password | include/account.php | $arr |
connect_premium | mod/connect.php | $arr |
connector_settings | mod/settings.php | $settings_connectors |
construct_page | boot.php | $arr |
contact_block_end | include/text.php | $arr |
contact_edit | mod/connedit.php | $arr |
contact_edit_post | mod/connedit.php | $_POST |
contact_select_options | include/acl_selectors.php | $x |
conversation_start | include/conversation.php | $cb |
create_identity | include/channel.php | $newuid |
cron | include/cronhooks.php | $d |
cron_daily | include/poller.php | datetime_convert() |
cron_weekly | include/poller.php | datetime_convert() |
directory_item | mod/directory.php | $arr |
discover_by_webbie | include/network.php | $arr |
display_item | include/ItemObject.php | $arr |
display_item | include/conversation.php | $arr |
display_settings | mod/settings.php | $o |
display_settings_post | mod/settings.php | $_POST |
donate_contributors | extend/addon/matrix/donate/donate.php | $contributors |
donate_plugin | extend/addon/matrix/donate/donate.php | $o |
donate_sponsors | extend/addon/matrix/donate/donate.php | $sponsors |
dreport_is_storable | include/zot.php | $dr |
drop_item | include/items.php | $arr |
enotify | include/enotify.php | $h |
enotify_mail | include/enotify.php | $datarray |
enotify_store | include/enotify.php | $datarray |
event_created | include/event.php | $event[id] |
event_updated | include/event.php | $event[id] |
externals_url_select | include/externals.php | $arr |
feature_enabled | include/features.php | $arr |
feature_settings | mod/settings.php | $settings_addons |
feature_settings_post | mod/settings.php | $_POST |
follow | include/follow.php | $arr |
follow | include/follow.php | $arr |
follow_allow | include/follow.php | $x |
gender_selector | include/profile_selectors.php | $select |
gender_selector_min | include/profile_selectors.php | $select |
generate_map | include/text.php | $arr |
generate_named_map | include/text.php | $arr |
get_all_api_perms | include/permissions.php | $arr |
get_all_perms | include/permissions.php | $arr |
get_features | include/features.php | $arr |
get_role_perms | include/permissions.php | $ret |
get_widgets | boot.php | $arr |
get_widgets | boot.php | $arr |
global_permissions | include/permissions.php | $ret |
home_content | mod/home.php | $o |
home_init | mod/home.php | $ret |
hostxrd | mod/hostxrd.php | $arr |
html2bbcode | include/html2bbcode.php | $message |
identity_basic_export | include/channel.php | $addon |
import_author_xchan | include/items.php | $arr |
import_channel | mod/import.php | $addon |
import_directory_profile | include/zot.php | $d |
import_xchan | include/zot.php | $arr |
item_photo_menu | include/conversation.php | $args |
item_store | include/items.php | $d |
item_store | include/items.php | $arr |
item_store_update | include/items.php | $d |
item_translate | include/items.php | $translate |
item_translate | include/items.php | $translate |
jot_networks | include/acl_selectors.php | $jotnets |
jot_networks | include/conversation.php | $jotnets |
jot_networks | mod/editblock.php | $jotnets |
jot_networks | mod/editpost.php | $jotnets |
jot_networks | mod/editwebpage.php | $jotnets |
jot_networks | mod/editlayout.php | $jotnets |
jot_tool | include/conversation.php | $jotplugins |
jot_tool | mod/editblock.php | $jotplugins |
jot_tool | mod/editpost.php | $jotplugins |
jot_tool | mod/editwebpage.php | $jotplugins |
jot_tool | mod/editlayout.php | $jotplugins |
load_pdl | boot.php | $arr |
local_dir_update | include/dir_fns.php | $arr |
logged_in | include/oauth.php | $a->user |
logged_in | include/api.php | $a->user |
logged_in | include/security.php | $a->account |
logged_in | include/security.php | $user_record |
logging_out | include/auth.php | $args |
login_hook | boot.php | $o |
magic_auth | mod/magic.php | $arr |
magic_auth_openid_success | mod/openid.php | $arr |
magic_auth_openid_success | mod/openid.php | $arr |
magic_auth_success | mod/post.php | $arr |
main_slider | include/widgets.php | $arr |
marital_selector | include/profile_selectors.php | $select |
marital_selector_min | include/profile_selectors.php | $select |
module_loaded | index.php | $x |
mood_verbs | include/text.php | $arr |
nav | include/nav.php | $x |
network_content_init | mod/network.php | $arr |
network_ping | mod/ping.php | $arr |
network_tabs | include/conversation.php | $arr |
network_to_name | include/contact_selectors.php | $nets |
notifier_end | include/notifier.php | $target_item |
notifier_hub | include/notifier.php | $narr |
notifier_normal | include/deliver_hooks.php | $r[0] |
obj_verbs | include/taxonomy.php | $arr |
oembed_probe | include/oembed.php | $x |
page_content_top | index.php | $a->page[content] |
page_end | index.php | $a->page[content] |
page_header | include/nav.php | $a->page[nav] |
parse_atom | include/items.php | $arr |
parse_link | mod/linkinfo.php | $arr |
pdl_selector | include/comanche.php | $arr |
perm_is_allowed | include/permissions.php | $arr |
permissions_create | include/notifier.php | $perm_update |
permissions_update | include/notifier.php | $perm_update |
personal_xrd | mod/xrd.php | $arr |
photo_post_end | include/photos.php | $ret |
photo_post_end | include/photos.php | $ret |
photo_upload_begin | include/attach.php | $arr |
photo_upload_begin | include/photos.php | $args |
photo_upload_end | include/attach.php | $ret |
photo_upload_end | include/attach.php | $ret |
photo_upload_end | include/attach.php | $ret |
photo_upload_end | include/attach.php | $ret |
photo_upload_end | include/attach.php | $ret |
photo_upload_end | include/photos.php | $ret |
photo_upload_end | include/photos.php | $ret |
photo_upload_end | include/photos.php | $ret |
photo_upload_end | include/photos.php | $ret |
photo_upload_file | include/attach.php | $f |
photo_upload_file | include/photos.php | $f |
photo_upload_form | mod/photos.php | $ret |
poke_verbs | include/text.php | $arr |
post_local | include/zot.php | $arr |
post_local | include/items.php | $arr |
post_local | mod/item.php | $datarray |
post_local_end | include/items.php | $arr |
post_local_end | include/attach.php | $arr |
post_local_end | include/attach.php | $arr |
post_local_end | extend/addon/matrix/randpost/randpost.php | $x |
post_local_end | extend/addon/matrix/randpost/randpost.php | $x |
post_local_end | mod/mood.php | $arr |
post_local_end | mod/like.php | $arr |
post_local_end | mod/item.php | $datarray |
post_local_end | mod/subthread.php | $arr |
post_local_start | mod/item.php | $_REQUEST |
post_mail | include/items.php | $arr |
post_mail_end | include/items.php | $arr |
post_remote | include/items.php | $arr |
post_remote_end | include/items.php | $arr |
post_remote_update | include/items.php | $arr |
post_remote_update_end | include/items.php | $arr |
prepare_body | include/text.php | $prep_arr |
prepare_body_final | include/text.php | $prep_arr |
prepare_body_init | include/text.php | $item |
probe_well_known | include/probe.php | $ret |
proc_run | boot.php | $arr |
process_channel_sync_delivery | include/zot.php | $addon |
profile_advanced | mod/profile.php | $o |
profile_edit | mod/profiles.php | $arr |
profile_photo_content_end | mod/profile_photo.php | $o |
profile_post | mod/profiles.php | $_POST |
profile_sidebar | include/channel.php | $arr |
profile_sidebar_enter | include/channel.php | $profile |
profile_tabs | include/conversation.php | $arr |
register_account | include/account.php | $result |
render_location | include/conversation.php | $locate |
replace_macros | include/text.php | $arr |
reverse_magic_auth | mod/rmagic.php | $arr |
settings_account | mod/settings.php | $_POST |
settings_form | mod/settings.php | $o |
settings_post | mod/settings.php | $_POST |
sexpref_selector | include/profile_selectors.php | $select |
sexpref_selector_min | include/profile_selectors.php | $select |
smilie | include/text.php | $params |
smilie | extend/addon/matrix/smileybutton/smileybutton.php | $params |
tagged | include/items.php | $arr |
validate_channelname | include/channel.php | $arr |
webfinger | mod/wfinger.php | $arr |
well_known | mod/_well_known.php | $arr |
zid | include/channel.php | $arr |
zid_init | include/channel.php | $arr |
zot_finger | include/zot.php | $ret |
Generated Tue Nov 03 21:19:02 PST 2015
\ No newline at end of file
diff --git a/include/account.php b/include/account.php
index 5998609d4..e367e002d 100644
--- a/include/account.php
+++ b/include/account.php
@@ -11,7 +11,7 @@ require_once('include/text.php');
require_once('include/language.php');
require_once('include/datetime.php');
require_once('include/crypto.php');
-require_once('include/identity.php');
+require_once('include/channel.php');
function check_account_email($email) {
diff --git a/include/api.php b/include/api.php
index 4a462d1e8..ba36cc01a 100644
--- a/include/api.php
+++ b/include/api.php
@@ -514,7 +514,7 @@ require_once('include/api_auth.php');
return false;
}
- require_once('include/identity.php');
+ require_once('include/channel.php');
json_return_and_die(identity_basic_export(api_user(),(($_REQUEST['posts']) ? intval($_REQUEST['posts']) : 0 )));
}
diff --git a/include/apps.php b/include/apps.php
index 7439be6d4..e300bc50d 100644
--- a/include/apps.php
+++ b/include/apps.php
@@ -6,7 +6,7 @@
*/
require_once('include/plugin.php');
-require_once('include/identity.php');
+require_once('include/channel.php');
function get_system_apps($translate = true) {
diff --git a/include/identity.php b/include/channel.php
similarity index 99%
rename from include/identity.php
rename to include/channel.php
index 4ef1105ea..050c4824b 100644
--- a/include/identity.php
+++ b/include/channel.php
@@ -1,6 +1,6 @@
0",
+ $r = q("select account_id from account where (account_roles & %d) > 0",
intval(ACCOUNT_ROLE_ADMIN)
);
diff --git a/include/contact_widgets.php b/include/contact_widgets.php
index e62d57aa2..14d26e257 100644
--- a/include/contact_widgets.php
+++ b/include/contact_widgets.php
@@ -3,9 +3,6 @@
function findpeople_widget() {
- require_once('include/Contact.php');
-
- $a = get_app();
if(get_config('system','invitation_only')) {
$x = get_pconfig(local_channel(),'system','invites_remaining');
@@ -37,7 +34,6 @@ function findpeople_widget() {
function fileas_widget($baseurl,$selected = '') {
- $a = get_app();
if(! local_channel())
return '';
@@ -65,8 +61,6 @@ function fileas_widget($baseurl,$selected = '') {
}
function categories_widget($baseurl,$selected = '') {
-
- $a = get_app();
if(! feature_enabled(App::$profile['profile_uid'],'categories'))
return '';
@@ -108,8 +102,6 @@ function categories_widget($baseurl,$selected = '') {
function common_friends_visitor_widget($profile_uid) {
- $a = get_app();
-
if(local_channel() == $profile_uid)
return;
diff --git a/include/conversation.php b/include/conversation.php
index fca07a91d..ca73a7a07 100644
--- a/include/conversation.php
+++ b/include/conversation.php
@@ -1107,7 +1107,6 @@ function status_editor($a, $x, $popup = false) {
$o = '';
- require_once('include/Contact.php');
$c = channelx_by_n($x['profile_uid']);
if($c && $c['channel_moved'])
return $o;
@@ -1160,7 +1159,7 @@ function status_editor($a, $x, $popup = false) {
$layoutselect = '';
if(array_key_exists('channel_select',$x) && $x['channel_select']) {
- require_once('include/identity.php');
+ require_once('include/channel.php');
$id_select = identity_selector();
}
else
diff --git a/include/feedutils.php b/include/feedutils.php
index 700198ff8..f370c540a 100644
--- a/include/feedutils.php
+++ b/include/feedutils.php
@@ -1087,7 +1087,6 @@ function update_feed_item($uid,$datarray) {
function handle_feed($uid,$abook_id,$url) {
- require_once('include/Contact.php');
$channel = channelx_by_n($uid);
if(! $channel)
return;
diff --git a/include/items.php b/include/items.php
index a25be72b3..de0941c3c 100755
--- a/include/items.php
+++ b/include/items.php
@@ -77,7 +77,7 @@ function collect_recipients($item, &$private_envelope) {
// by the directives in $item['public_policy'].
$private_envelope = false;
- require_once('include/identity.php');
+ require_once('include/channel.php');
//$sys = get_sys_channel();
if(array_key_exists('public_policy',$item) && $item['public_policy'] !== 'self') {
diff --git a/include/text.php b/include/text.php
index df6dac056..91aeae989 100644
--- a/include/text.php
+++ b/include/text.php
@@ -1319,7 +1319,7 @@ function theme_attachments(&$item) {
$title = t('Size') . ' ' . (($r['length']) ? userReadableSize($r['length']) : t('unknown'));
- require_once('include/identity.php');
+ require_once('include/channel.php');
if(is_foreigner($item['author_xchan']))
$url = $r['href'];
else
@@ -1486,7 +1486,7 @@ function format_event($jobject) {
}
function prepare_body(&$item,$attach = false) {
- require_once('include/identity.php');
+ require_once('include/channel.php');
call_hooks('prepare_body_init', $item);
@@ -2261,7 +2261,7 @@ function design_tools() {
$sys = false;
if(App::$is_sys && is_site_admin()) {
- require_once('include/identity.php');
+ require_once('include/channel.php');
$channel = get_sys_channel();
$sys = true;
}
diff --git a/include/widgets.php b/include/widgets.php
index 2641a718e..a158633ad 100644
--- a/include/widgets.php
+++ b/include/widgets.php
@@ -8,7 +8,7 @@
require_once('include/dir_fns.php');
require_once('include/contact_widgets.php');
require_once('include/attach.php');
-require_once('include/Contact.php');
+
function widget_profile($args) {
@@ -806,7 +806,6 @@ function widget_photo_albums($arr) {
function widget_vcard($arr) {
- require_once ('include/Contact.php');
return vcard_from_xchan('', App::get_observer());
}
@@ -1052,7 +1051,7 @@ function widget_photo($arr) {
function widget_cover_photo($arr) {
- require_once('include/identity.php');
+ require_once('include/channel.php');
$o = '';
if(App::$module == 'channel' && $_REQUEST['mid'])
diff --git a/include/zot.php b/include/zot.php
index f5fb87e12..4b780db2a 100644
--- a/include/zot.php
+++ b/include/zot.php
@@ -1332,7 +1332,7 @@ function zot_import($arr, $sender_url) {
*/
function public_recips($msg) {
- require_once('include/identity.php');
+ require_once('include/channel.php');
$check_mentions = false;
$include_sys = false;
@@ -3222,7 +3222,6 @@ function process_channel_sync_delivery($sender, $arr, $deliveries) {
$clean = array();
if($abook['abook_xchan'] && $abook['entry_deleted']) {
logger('process_channel_sync_delivery: removing abook entry for ' . $abook['abook_xchan']);
- require_once('include/Contact.php');
$r = q("select abook_id, abook_feed from abook where abook_xchan = '%s' and abook_channel = %d and abook_self = 0 limit 1",
dbesc($abook['abook_xchan']),
@@ -3926,7 +3925,7 @@ function zotinfo($arr) {
$ret['site']['accounts'] = account_total();
- require_once('include/identity.php');
+ require_once('include/channel.php');
$ret['site']['channels'] = channel_total();
@@ -4421,7 +4420,6 @@ function zot_reply_purge($sender,$recipients) {
$arr = $sender;
$sender_hash = make_xchan_hash($arr['guid'],$arr['guid_sig']);
- require_once('include/Contact.php');
remove_all_xchan_resources($sender_hash);
$ret['success'] = true;
diff --git a/util/hmessages.po b/util/hmessages.po
index abc4d1a9f..c863c6a67 100644
--- a/util/hmessages.po
+++ b/util/hmessages.po
@@ -111,8 +111,8 @@ msgstr ""
#: ../../Zotlabs/Module/Editwebpage.php:146
#: ../../Zotlabs/Module/Layouts.php:190 ../../Zotlabs/Module/Menu.php:112
#: ../../Zotlabs/Module/Settings.php:652 ../../Zotlabs/Module/Thing.php:260
-#: ../../Zotlabs/Module/Webpages.php:187 ../../include/identity.php:937
-#: ../../include/identity.php:941 ../../include/ItemObject.php:100
+#: ../../Zotlabs/Module/Webpages.php:187 ../../include/channel.php:937
+#: ../../include/channel.php:941 ../../include/ItemObject.php:100
#: ../../include/menu.php:108 ../../include/page_widgets.php:8
#: ../../include/page_widgets.php:36 ../../include/apps.php:291
msgid "Edit"
@@ -247,7 +247,7 @@ msgstr ""
#: ../../Zotlabs/Module/Editwebpage.php:33
#: ../../Zotlabs/Module/Filestorage.php:60 ../../Zotlabs/Module/Hcard.php:12
#: ../../Zotlabs/Module/Layouts.php:31 ../../Zotlabs/Module/Profile.php:20
-#: ../../Zotlabs/Module/Webpages.php:34 ../../include/identity.php:837
+#: ../../Zotlabs/Module/Webpages.php:34 ../../include/channel.php:837
msgid "Requested profile is not available."
msgstr ""
@@ -2030,8 +2030,8 @@ msgstr ""
#: ../../Zotlabs/Module/Settings.php:346 ../../Zotlabs/Module/Settings.php:347
#: ../../Zotlabs/Module/Settings.php:350 ../../Zotlabs/Module/Settings.php:361
#: ../../include/profile_selectors.php:80 ../../include/widgets.php:495
-#: ../../include/identity.php:389 ../../include/identity.php:390
-#: ../../include/identity.php:397
+#: ../../include/channel.php:389 ../../include/channel.php:390
+#: ../../include/channel.php:397
msgid "Friends"
msgstr ""
@@ -2236,7 +2236,7 @@ msgstr ""
msgid "%1$s updated their %2$s"
msgstr ""
-#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/identity.php:1807
+#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1807
msgid "cover photo"
msgstr ""
@@ -2318,12 +2318,12 @@ msgstr ""
msgid "Homepage: "
msgstr ""
-#: ../../Zotlabs/Module/Directory.php:306 ../../include/identity.php:1329
+#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1329
msgid "Age:"
msgstr ""
#: ../../Zotlabs/Module/Directory.php:311 ../../include/event.php:52
-#: ../../include/identity.php:1029 ../../include/text.php:1481
+#: ../../include/channel.php:1029 ../../include/text.php:1481
#: ../../include/bb2diaspora.php:509
msgid "Location:"
msgstr ""
@@ -2332,18 +2332,18 @@ msgstr ""
msgid "Description:"
msgstr ""
-#: ../../Zotlabs/Module/Directory.php:322 ../../include/identity.php:1345
+#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1345
msgid "Hometown:"
msgstr ""
-#: ../../Zotlabs/Module/Directory.php:324 ../../include/identity.php:1353
+#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1353
msgid "About:"
msgstr ""
#: ../../Zotlabs/Module/Directory.php:325 ../../Zotlabs/Module/Match.php:68
#: ../../Zotlabs/Module/Suggest.php:56 ../../include/Contact.php:101
#: ../../include/widgets.php:147 ../../include/widgets.php:184
-#: ../../include/identity.php:1014 ../../include/conversation.php:961
+#: ../../include/channel.php:1014 ../../include/conversation.php:961
msgid "Connect"
msgstr ""
@@ -4182,7 +4182,7 @@ msgstr ""
msgid "View all"
msgstr ""
-#: ../../Zotlabs/Module/Photos.php:1130 ../../include/identity.php:1304
+#: ../../Zotlabs/Module/Photos.php:1130 ../../include/channel.php:1304
#: ../../include/ItemObject.php:179 ../../include/conversation.php:1748
#: ../../include/taxonomy.php:403
msgctxt "noun"
@@ -4243,13 +4243,13 @@ msgstr ""
msgid "added your channel"
msgstr ""
-#: ../../Zotlabs/Module/Ping.php:322 ../../include/identity.php:1123
-#: ../../include/identity.php:1199
+#: ../../Zotlabs/Module/Ping.php:322 ../../include/channel.php:1123
+#: ../../include/channel.php:1199
msgid "g A l F d"
msgstr ""
-#: ../../Zotlabs/Module/Ping.php:345 ../../include/identity.php:1169
-#: ../../include/identity.php:1239
+#: ../../Zotlabs/Module/Ping.php:345 ../../include/channel.php:1169
+#: ../../include/channel.php:1239
msgid "[today]"
msgstr ""
@@ -4387,7 +4387,7 @@ msgid "View this profile"
msgstr ""
#: ../../Zotlabs/Module/Profiles.php:693 ../../Zotlabs/Module/Profiles.php:775
-#: ../../include/identity.php:959
+#: ../../include/channel.php:959
msgid "Edit visibility"
msgstr ""
@@ -4399,7 +4399,7 @@ msgstr ""
msgid "Change cover photo"
msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:696 ../../include/identity.php:930
+#: ../../Zotlabs/Module/Profiles.php:696 ../../include/channel.php:930
msgid "Change profile photo"
msgstr ""
@@ -4560,11 +4560,11 @@ msgstr ""
msgid "My other channels"
msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:771 ../../include/identity.php:955
+#: ../../Zotlabs/Module/Profiles.php:771 ../../include/channel.php:955
msgid "Profile Image"
msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:781 ../../include/identity.php:937
+#: ../../Zotlabs/Module/Profiles.php:781 ../../include/channel.php:937
#: ../../include/nav.php:88
msgid "Edit Profiles"
msgstr ""
@@ -4577,7 +4577,7 @@ msgstr ""
msgid "Profile Visibility Editor"
msgstr ""
-#: ../../Zotlabs/Module/Profperm.php:117 ../../include/identity.php:1395
+#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1395
msgid "Profile"
msgstr ""
@@ -5190,7 +5190,7 @@ msgstr ""
msgid "Basic Settings"
msgstr ""
-#: ../../Zotlabs/Module/Settings.php:1040 ../../include/identity.php:1286
+#: ../../Zotlabs/Module/Settings.php:1040 ../../include/channel.php:1286
msgid "Full Name:"
msgstr ""
@@ -6952,185 +6952,185 @@ msgstr ""
msgid "Room is full"
msgstr ""
-#: ../../include/identity.php:32
+#: ../../include/channel.php:32
msgid "Unable to obtain identity information from database"
msgstr ""
-#: ../../include/identity.php:66
+#: ../../include/channel.php:66
msgid "Empty name"
msgstr ""
-#: ../../include/identity.php:69
+#: ../../include/channel.php:69
msgid "Name too long"
msgstr ""
-#: ../../include/identity.php:180
+#: ../../include/channel.php:180
msgid "No account identifier"
msgstr ""
-#: ../../include/identity.php:192
+#: ../../include/channel.php:192
msgid "Nickname is required."
msgstr ""
-#: ../../include/identity.php:206
+#: ../../include/channel.php:206
msgid "Reserved nickname. Please choose another."
msgstr ""
-#: ../../include/identity.php:211
+#: ../../include/channel.php:211
msgid ""
"Nickname has unsupported characters or is already being used on this site."
msgstr ""
-#: ../../include/identity.php:287
+#: ../../include/channel.php:287
msgid "Unable to retrieve created identity"
msgstr ""
-#: ../../include/identity.php:345
+#: ../../include/channel.php:345
msgid "Default Profile"
msgstr ""
-#: ../../include/identity.php:791
+#: ../../include/channel.php:791
msgid "Requested channel is not available."
msgstr ""
-#: ../../include/identity.php:938
+#: ../../include/channel.php:938
msgid "Create New Profile"
msgstr ""
-#: ../../include/identity.php:941 ../../include/nav.php:90
+#: ../../include/channel.php:941 ../../include/nav.php:90
msgid "Edit Profile"
msgstr ""
-#: ../../include/identity.php:958
+#: ../../include/channel.php:958
msgid "Visible to everybody"
msgstr ""
-#: ../../include/identity.php:1033 ../../include/identity.php:1288
+#: ../../include/channel.php:1033 ../../include/channel.php:1288
msgid "Gender:"
msgstr ""
-#: ../../include/identity.php:1034 ../../include/identity.php:1332
+#: ../../include/channel.php:1034 ../../include/channel.php:1332
msgid "Status:"
msgstr ""
-#: ../../include/identity.php:1035 ../../include/identity.php:1343
+#: ../../include/channel.php:1035 ../../include/channel.php:1343
msgid "Homepage:"
msgstr ""
-#: ../../include/identity.php:1036
+#: ../../include/channel.php:1036
msgid "Online Now"
msgstr ""
-#: ../../include/identity.php:1124 ../../include/identity.php:1200
+#: ../../include/channel.php:1124 ../../include/channel.php:1200
msgid "F d"
msgstr ""
-#: ../../include/identity.php:1180
+#: ../../include/channel.php:1180
msgid "Birthday Reminders"
msgstr ""
-#: ../../include/identity.php:1181
+#: ../../include/channel.php:1181
msgid "Birthdays this week:"
msgstr ""
-#: ../../include/identity.php:1232
+#: ../../include/channel.php:1232
msgid "[No description]"
msgstr ""
-#: ../../include/identity.php:1250
+#: ../../include/channel.php:1250
msgid "Event Reminders"
msgstr ""
-#: ../../include/identity.php:1251
+#: ../../include/channel.php:1251
msgid "Events this week:"
msgstr ""
-#: ../../include/identity.php:1293
+#: ../../include/channel.php:1293
msgid "Like this channel"
msgstr ""
-#: ../../include/identity.php:1317
+#: ../../include/channel.php:1317
msgid "j F, Y"
msgstr ""
-#: ../../include/identity.php:1318
+#: ../../include/channel.php:1318
msgid "j F"
msgstr ""
-#: ../../include/identity.php:1325
+#: ../../include/channel.php:1325
msgid "Birthday:"
msgstr ""
-#: ../../include/identity.php:1338
+#: ../../include/channel.php:1338
#, php-format
msgid "for %1$d %2$s"
msgstr ""
-#: ../../include/identity.php:1341
+#: ../../include/channel.php:1341
msgid "Sexual Preference:"
msgstr ""
-#: ../../include/identity.php:1347
+#: ../../include/channel.php:1347
msgid "Tags:"
msgstr ""
-#: ../../include/identity.php:1349
+#: ../../include/channel.php:1349
msgid "Political Views:"
msgstr ""
-#: ../../include/identity.php:1351
+#: ../../include/channel.php:1351
msgid "Religion:"
msgstr ""
-#: ../../include/identity.php:1355
+#: ../../include/channel.php:1355
msgid "Hobbies/Interests:"
msgstr ""
-#: ../../include/identity.php:1357
+#: ../../include/channel.php:1357
msgid "Likes:"
msgstr ""
-#: ../../include/identity.php:1359
+#: ../../include/channel.php:1359
msgid "Dislikes:"
msgstr ""
-#: ../../include/identity.php:1361
+#: ../../include/channel.php:1361
msgid "Contact information and Social Networks:"
msgstr ""
-#: ../../include/identity.php:1363
+#: ../../include/channel.php:1363
msgid "My other channels:"
msgstr ""
-#: ../../include/identity.php:1365
+#: ../../include/channel.php:1365
msgid "Musical interests:"
msgstr ""
-#: ../../include/identity.php:1367
+#: ../../include/channel.php:1367
msgid "Books, literature:"
msgstr ""
-#: ../../include/identity.php:1369
+#: ../../include/channel.php:1369
msgid "Television:"
msgstr ""
-#: ../../include/identity.php:1371
+#: ../../include/channel.php:1371
msgid "Film/dance/culture/entertainment:"
msgstr ""
-#: ../../include/identity.php:1373
+#: ../../include/channel.php:1373
msgid "Love/Romance:"
msgstr ""
-#: ../../include/identity.php:1375
+#: ../../include/channel.php:1375
msgid "Work/employment:"
msgstr ""
-#: ../../include/identity.php:1377
+#: ../../include/channel.php:1377
msgid "School/education:"
msgstr ""
-#: ../../include/identity.php:1397
+#: ../../include/channel.php:1397
msgid "Like this thing"
msgstr ""
diff --git a/util/messages.po b/util/messages.po
index f3c9782f3..dd847e9e0 100644
--- a/util/messages.po
+++ b/util/messages.po
@@ -1023,7 +1023,7 @@ msgstr ""
#: ../../include/widgets.php:136 ../../include/widgets.php:175
#: ../../include/Contact.php:107 ../../include/conversation.php:956
-#: ../../include/identity.php:956 ../../mod/directory.php:316
+#: ../../include/channel.php:956 ../../mod/directory.php:316
#: ../../mod/match.php:64 ../../mod/suggest.php:52
msgid "Connect"
msgstr ""
@@ -1088,8 +1088,8 @@ msgstr ""
msgid "Family"
msgstr ""
-#: ../../include/widgets.php:431 ../../include/identity.php:394
-#: ../../include/identity.php:395 ../../include/identity.php:402
+#: ../../include/widgets.php:431 ../../include/channel.php:394
+#: ../../include/channel.php:395 ../../include/channel.php:402
#: ../../include/profile_selectors.php:80 ../../mod/settings.php:345
#: ../../mod/settings.php:349 ../../mod/settings.php:350
#: ../../mod/settings.php:353 ../../mod/settings.php:364
@@ -1206,7 +1206,7 @@ msgid "Finishes:"
msgstr ""
#: ../../include/event.php:50 ../../include/bb2diaspora.php:481
-#: ../../include/identity.php:1007 ../../mod/directory.php:302
+#: ../../include/channel.php:1007 ../../mod/directory.php:302
#: ../../mod/events.php:684
msgid "Location:"
msgstr ""
@@ -1523,7 +1523,7 @@ msgid "View all"
msgstr ""
#: ../../include/ItemObject.php:179 ../../include/taxonomy.php:396
-#: ../../include/conversation.php:1712 ../../include/identity.php:1266
+#: ../../include/conversation.php:1712 ../../include/channel.php:1266
#: ../../mod/photos.php:1019
msgctxt "noun"
msgid "Like"
@@ -1775,7 +1775,7 @@ msgstr ""
msgid "Manage/Edit profiles"
msgstr ""
-#: ../../include/nav.php:95 ../../include/identity.php:979
+#: ../../include/nav.php:95 ../../include/channel.php:979
msgid "Edit Profile"
msgstr ""
@@ -3279,48 +3279,48 @@ msgstr ""
msgid "database storage failed."
msgstr ""
-#: ../../include/identity.php:33
+#: ../../include/channel.php:33
msgid "Unable to obtain identity information from database"
msgstr ""
-#: ../../include/identity.php:67
+#: ../../include/channel.php:67
msgid "Empty name"
msgstr ""
-#: ../../include/identity.php:70
+#: ../../include/channel.php:70
msgid "Name too long"
msgstr ""
-#: ../../include/identity.php:186
+#: ../../include/channel.php:186
msgid "No account identifier"
msgstr ""
-#: ../../include/identity.php:198
+#: ../../include/channel.php:198
msgid "Nickname is required."
msgstr ""
-#: ../../include/identity.php:212
+#: ../../include/channel.php:212
msgid "Reserved nickname. Please choose another."
msgstr ""
-#: ../../include/identity.php:217 ../../include/dimport.php:34
+#: ../../include/channel.php:217 ../../include/dimport.php:34
msgid ""
"Nickname has unsupported characters or is already being used on this site."
msgstr ""
-#: ../../include/identity.php:292
+#: ../../include/channel.php:292
msgid "Unable to retrieve created identity"
msgstr ""
-#: ../../include/identity.php:350
+#: ../../include/channel.php:350
msgid "Default Profile"
msgstr ""
-#: ../../include/identity.php:759
+#: ../../include/channel.php:759
msgid "Requested channel is not available."
msgstr ""
-#: ../../include/identity.php:806 ../../mod/profile.php:16
+#: ../../include/channel.php:806 ../../mod/profile.php:16
#: ../../mod/achievements.php:11 ../../mod/webpages.php:29
#: ../../mod/connect.php:13 ../../mod/hcard.php:8 ../../mod/blocks.php:29
#: ../../mod/editlayout.php:27 ../../mod/editwebpage.php:28
@@ -3329,193 +3329,193 @@ msgstr ""
msgid "Requested profile is not available."
msgstr ""
-#: ../../include/identity.php:969 ../../mod/profiles.php:774
+#: ../../include/channel.php:969 ../../mod/profiles.php:774
msgid "Change profile photo"
msgstr ""
-#: ../../include/identity.php:975
+#: ../../include/channel.php:975
msgid "Profiles"
msgstr ""
-#: ../../include/identity.php:975
+#: ../../include/channel.php:975
msgid "Manage/edit profiles"
msgstr ""
-#: ../../include/identity.php:976 ../../mod/profiles.php:775
+#: ../../include/channel.php:976 ../../mod/profiles.php:775
msgid "Create New Profile"
msgstr ""
-#: ../../include/identity.php:991 ../../mod/profiles.php:786
+#: ../../include/channel.php:991 ../../mod/profiles.php:786
msgid "Profile Image"
msgstr ""
-#: ../../include/identity.php:994
+#: ../../include/channel.php:994
msgid "visible to everybody"
msgstr ""
-#: ../../include/identity.php:995 ../../mod/profiles.php:669
+#: ../../include/channel.php:995 ../../mod/profiles.php:669
#: ../../mod/profiles.php:790
msgid "Edit visibility"
msgstr ""
-#: ../../include/identity.php:1011 ../../include/identity.php:1250
+#: ../../include/channel.php:1011 ../../include/channel.php:1250
msgid "Gender:"
msgstr ""
-#: ../../include/identity.php:1012 ../../include/identity.php:1294
+#: ../../include/channel.php:1012 ../../include/channel.php:1294
msgid "Status:"
msgstr ""
-#: ../../include/identity.php:1013 ../../include/identity.php:1305
+#: ../../include/channel.php:1013 ../../include/channel.php:1305
msgid "Homepage:"
msgstr ""
-#: ../../include/identity.php:1014
+#: ../../include/channel.php:1014
msgid "Online Now"
msgstr ""
-#: ../../include/identity.php:1097 ../../include/identity.php:1175
+#: ../../include/channel.php:1097 ../../include/channel.php:1175
#: ../../mod/ping.php:324
msgid "g A l F d"
msgstr ""
-#: ../../include/identity.php:1098 ../../include/identity.php:1176
+#: ../../include/channel.php:1098 ../../include/channel.php:1176
msgid "F d"
msgstr ""
-#: ../../include/identity.php:1143 ../../include/identity.php:1215
+#: ../../include/channel.php:1143 ../../include/channel.php:1215
#: ../../mod/ping.php:346
msgid "[today]"
msgstr ""
-#: ../../include/identity.php:1154
+#: ../../include/channel.php:1154
msgid "Birthday Reminders"
msgstr ""
-#: ../../include/identity.php:1155
+#: ../../include/channel.php:1155
msgid "Birthdays this week:"
msgstr ""
-#: ../../include/identity.php:1208
+#: ../../include/channel.php:1208
msgid "[No description]"
msgstr ""
-#: ../../include/identity.php:1226
+#: ../../include/channel.php:1226
msgid "Event Reminders"
msgstr ""
-#: ../../include/identity.php:1227
+#: ../../include/channel.php:1227
msgid "Events this week:"
msgstr ""
-#: ../../include/identity.php:1240 ../../include/identity.php:1357
+#: ../../include/channel.php:1240 ../../include/channel.php:1357
#: ../../include/apps.php:138 ../../mod/profperm.php:112
msgid "Profile"
msgstr ""
-#: ../../include/identity.php:1248 ../../mod/settings.php:1056
+#: ../../include/channel.php:1248 ../../mod/settings.php:1056
msgid "Full Name:"
msgstr ""
-#: ../../include/identity.php:1255
+#: ../../include/channel.php:1255
msgid "Like this channel"
msgstr ""
-#: ../../include/identity.php:1279
+#: ../../include/channel.php:1279
msgid "j F, Y"
msgstr ""
-#: ../../include/identity.php:1280
+#: ../../include/channel.php:1280
msgid "j F"
msgstr ""
-#: ../../include/identity.php:1287
+#: ../../include/channel.php:1287
msgid "Birthday:"
msgstr ""
-#: ../../include/identity.php:1291 ../../mod/directory.php:297
+#: ../../include/channel.php:1291 ../../mod/directory.php:297
msgid "Age:"
msgstr ""
-#: ../../include/identity.php:1300
+#: ../../include/channel.php:1300
#, php-format
msgid "for %1$d %2$s"
msgstr ""
-#: ../../include/identity.php:1303 ../../mod/profiles.php:691
+#: ../../include/channel.php:1303 ../../mod/profiles.php:691
msgid "Sexual Preference:"
msgstr ""
-#: ../../include/identity.php:1307 ../../mod/directory.php:313
+#: ../../include/channel.php:1307 ../../mod/directory.php:313
#: ../../mod/profiles.php:693
msgid "Hometown:"
msgstr ""
-#: ../../include/identity.php:1309
+#: ../../include/channel.php:1309
msgid "Tags:"
msgstr ""
-#: ../../include/identity.php:1311 ../../mod/profiles.php:694
+#: ../../include/channel.php:1311 ../../mod/profiles.php:694
msgid "Political Views:"
msgstr ""
-#: ../../include/identity.php:1313
+#: ../../include/channel.php:1313
msgid "Religion:"
msgstr ""
-#: ../../include/identity.php:1315 ../../mod/directory.php:315
+#: ../../include/channel.php:1315 ../../mod/directory.php:315
msgid "About:"
msgstr ""
-#: ../../include/identity.php:1317
+#: ../../include/channel.php:1317
msgid "Hobbies/Interests:"
msgstr ""
-#: ../../include/identity.php:1319 ../../mod/profiles.php:697
+#: ../../include/channel.php:1319 ../../mod/profiles.php:697
msgid "Likes:"
msgstr ""
-#: ../../include/identity.php:1321 ../../mod/profiles.php:698
+#: ../../include/channel.php:1321 ../../mod/profiles.php:698
msgid "Dislikes:"
msgstr ""
-#: ../../include/identity.php:1323
+#: ../../include/channel.php:1323
msgid "Contact information and Social Networks:"
msgstr ""
-#: ../../include/identity.php:1325
+#: ../../include/channel.php:1325
msgid "My other channels:"
msgstr ""
-#: ../../include/identity.php:1327
+#: ../../include/channel.php:1327
msgid "Musical interests:"
msgstr ""
-#: ../../include/identity.php:1329
+#: ../../include/channel.php:1329
msgid "Books, literature:"
msgstr ""
-#: ../../include/identity.php:1331
+#: ../../include/channel.php:1331
msgid "Television:"
msgstr ""
-#: ../../include/identity.php:1333
+#: ../../include/channel.php:1333
msgid "Film/dance/culture/entertainment:"
msgstr ""
-#: ../../include/identity.php:1335
+#: ../../include/channel.php:1335
msgid "Love/Romance:"
msgstr ""
-#: ../../include/identity.php:1337
+#: ../../include/channel.php:1337
msgid "Work/employment:"
msgstr ""
-#: ../../include/identity.php:1339
+#: ../../include/channel.php:1339
msgid "School/education:"
msgstr ""
-#: ../../include/identity.php:1359
+#: ../../include/channel.php:1359
msgid "Like this thing"
msgstr ""