Merge branch 'develop' into rewrites/dbm_is_result
Signed-off-by: Roland Haeder <roland@mxchange.org>
This commit is contained in:
commit
370571845b
|
@ -85,7 +85,7 @@ function contact_remove($id) {
|
||||||
|
|
||||||
function terminate_friendship($user,$self,$contact) {
|
function terminate_friendship($user,$self,$contact) {
|
||||||
|
|
||||||
/// @TODO Get rid of this, include/datetime.php should care about by itself
|
/// @TODO Get rid of this, include/datetime.php should care about it by itself
|
||||||
$a = get_app();
|
$a = get_app();
|
||||||
|
|
||||||
require_once('include/datetime.php');
|
require_once('include/datetime.php');
|
||||||
|
|
|
@ -272,7 +272,7 @@ function prune_deadguys($arr) {
|
||||||
|
|
||||||
$r = q("SELECT `id` FROM `contact` WHERE `id` IN ( " . $str . ") AND `blocked` = 0 AND `pending` = 0 AND `archive` = 0 ");
|
$r = q("SELECT `id` FROM `contact` WHERE `id` IN ( " . $str . ") AND `blocked` = 0 AND `pending` = 0 AND `archive` = 0 ");
|
||||||
|
|
||||||
if ($r) {
|
if (dbm::is_result($r)) {
|
||||||
$ret = array();
|
$ret = array();
|
||||||
foreach ($r as $rr) {
|
foreach ($r as $rr) {
|
||||||
$ret[] = intval($rr['id']);
|
$ret[] = intval($rr['id']);
|
||||||
|
@ -585,9 +585,9 @@ function acl_lookup(&$a, $out_type = 'json') {
|
||||||
);
|
);
|
||||||
echo json_encode($o);
|
echo json_encode($o);
|
||||||
killme();
|
killme();
|
||||||
}
|
} else {
|
||||||
else
|
|
||||||
$r = array();
|
$r = array();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
if (dbm::is_result($r)) {
|
if (dbm::is_result($r)) {
|
||||||
|
|
|
@ -136,7 +136,7 @@ function fileas_widget($baseurl,$selected = '') {
|
||||||
$matches = false;
|
$matches = false;
|
||||||
$terms = array();
|
$terms = array();
|
||||||
$cnt = preg_match_all('/\[(.*?)\]/',$saved,$matches,PREG_SET_ORDER);
|
$cnt = preg_match_all('/\[(.*?)\]/',$saved,$matches,PREG_SET_ORDER);
|
||||||
if($cnt) {
|
if ($cnt) {
|
||||||
foreach($matches as $mtch) {
|
foreach($matches as $mtch) {
|
||||||
$unescaped = xmlify(file_tag_decode($mtch[1]));
|
$unescaped = xmlify(file_tag_decode($mtch[1]));
|
||||||
$terms[] = array('name' => $unescaped,'selected' => (($selected == $unescaped) ? 'selected' : ''));
|
$terms[] = array('name' => $unescaped,'selected' => (($selected == $unescaped) ? 'selected' : ''));
|
||||||
|
@ -158,12 +158,14 @@ function categories_widget($baseurl,$selected = '') {
|
||||||
|
|
||||||
$a = get_app();
|
$a = get_app();
|
||||||
|
|
||||||
if(! feature_enabled($a->profile['profile_uid'],'categories'))
|
if (! feature_enabled($a->profile['profile_uid'],'categories')) {
|
||||||
return '';
|
return '';
|
||||||
|
}
|
||||||
|
|
||||||
$saved = get_pconfig($a->profile['profile_uid'],'system','filetags');
|
$saved = get_pconfig($a->profile['profile_uid'],'system','filetags');
|
||||||
if(! strlen($saved))
|
if (! strlen($saved)) {
|
||||||
return;
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
$matches = false;
|
$matches = false;
|
||||||
$terms = array();
|
$terms = array();
|
||||||
|
|
|
@ -102,8 +102,7 @@ function new_contact($uid,$url,$interactive = false) {
|
||||||
if ($interactive) {
|
if ($interactive) {
|
||||||
if (strlen($a->path)) {
|
if (strlen($a->path)) {
|
||||||
$myaddr = bin2hex(App::get_baseurl() . '/profile/' . $a->user['nickname']);
|
$myaddr = bin2hex(App::get_baseurl() . '/profile/' . $a->user['nickname']);
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
$myaddr = bin2hex($a->user['nickname'] . '@' . $a->get_hostname());
|
$myaddr = bin2hex($a->user['nickname'] . '@' . $a->get_hostname());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -111,53 +110,45 @@ function new_contact($uid,$url,$interactive = false) {
|
||||||
|
|
||||||
// NOTREACHED
|
// NOTREACHED
|
||||||
}
|
}
|
||||||
}
|
} else {
|
||||||
else {
|
if (get_config('system','dfrn_only')) {
|
||||||
if(get_config('system','dfrn_only')) {
|
|
||||||
$result['message'] = t('This site is not configured to allow communications with other networks.') . EOL;
|
$result['message'] = t('This site is not configured to allow communications with other networks.') . EOL;
|
||||||
$result['message'] != t('No compatible communication protocols or feeds were discovered.') . EOL;
|
$result['message'] != t('No compatible communication protocols or feeds were discovered.') . EOL;
|
||||||
return $result;
|
return $result;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// This extra param just confuses things, remove it
|
// This extra param just confuses things, remove it
|
||||||
if($ret['network'] === NETWORK_DIASPORA)
|
if ($ret['network'] === NETWORK_DIASPORA) {
|
||||||
$ret['url'] = str_replace('?absolute=true','',$ret['url']);
|
$ret['url'] = str_replace('?absolute=true','',$ret['url']);
|
||||||
|
}
|
||||||
|
|
||||||
// do we have enough information?
|
// do we have enough information?
|
||||||
|
|
||||||
if(! ((x($ret,'name')) && (x($ret,'poll')) && ((x($ret,'url')) || (x($ret,'addr'))))) {
|
if (! ((x($ret,'name')) && (x($ret,'poll')) && ((x($ret,'url')) || (x($ret,'addr'))))) {
|
||||||
$result['message'] .= t('The profile address specified does not provide adequate information.') . EOL;
|
$result['message'] .= t('The profile address specified does not provide adequate information.') . EOL;
|
||||||
if(! x($ret,'poll'))
|
if (! x($ret,'poll')) {
|
||||||
$result['message'] .= t('No compatible communication protocols or feeds were discovered.') . EOL;
|
$result['message'] .= t('No compatible communication protocols or feeds were discovered.') . EOL;
|
||||||
if(! x($ret,'name'))
|
}
|
||||||
|
if (! x($ret,'name')) {
|
||||||
$result['message'] .= t('An author or name was not found.') . EOL;
|
$result['message'] .= t('An author or name was not found.') . EOL;
|
||||||
if(! x($ret,'url'))
|
}
|
||||||
|
if (! x($ret,'url')) {
|
||||||
$result['message'] .= t('No browser URL could be matched to this address.') . EOL;
|
$result['message'] .= t('No browser URL could be matched to this address.') . EOL;
|
||||||
if(strpos($url,'@') !== false) {
|
}
|
||||||
|
if (strpos($url,'@') !== false) {
|
||||||
$result['message'] .= t('Unable to match @-style Identity Address with a known protocol or email contact.') . EOL;
|
$result['message'] .= t('Unable to match @-style Identity Address with a known protocol or email contact.') . EOL;
|
||||||
$result['message'] .= t('Use mailto: in front of address to force email check.') . EOL;
|
$result['message'] .= t('Use mailto: in front of address to force email check.') . EOL;
|
||||||
}
|
}
|
||||||
return $result;
|
return $result;
|
||||||
}
|
}
|
||||||
|
|
||||||
if($ret['network'] === NETWORK_OSTATUS && get_config('system','ostatus_disabled')) {
|
if ($ret['network'] === NETWORK_OSTATUS && get_config('system','ostatus_disabled')) {
|
||||||
$result['message'] .= t('The profile address specified belongs to a network which has been disabled on this site.') . EOL;
|
$result['message'] .= t('The profile address specified belongs to a network which has been disabled on this site.') . EOL;
|
||||||
$ret['notify'] = '';
|
$ret['notify'] = '';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (! $ret['notify']) {
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
if(! $ret['notify']) {
|
|
||||||
$result['message'] .= t('Limited profile. This person will be unable to receive direct/personal notifications from you.') . EOL;
|
$result['message'] .= t('Limited profile. This person will be unable to receive direct/personal notifications from you.') . EOL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -167,8 +158,9 @@ function new_contact($uid,$url,$interactive = false) {
|
||||||
|
|
||||||
$hidden = (($ret['network'] === NETWORK_MAIL) ? 1 : 0);
|
$hidden = (($ret['network'] === NETWORK_MAIL) ? 1 : 0);
|
||||||
|
|
||||||
if(in_array($ret['network'], array(NETWORK_MAIL, NETWORK_DIASPORA)))
|
if (in_array($ret['network'], array(NETWORK_MAIL, NETWORK_DIASPORA))) {
|
||||||
$writeable = 1;
|
$writeable = 1;
|
||||||
|
}
|
||||||
|
|
||||||
// check if we already have a contact
|
// check if we already have a contact
|
||||||
// the poll url is more reliable than the profile url, as we may have
|
// the poll url is more reliable than the profile url, as we may have
|
||||||
|
@ -188,7 +180,7 @@ function new_contact($uid,$url,$interactive = false) {
|
||||||
|
|
||||||
if (dbm::is_result($r)) {
|
if (dbm::is_result($r)) {
|
||||||
// update contact
|
// update contact
|
||||||
if($r[0]['rel'] == CONTACT_IS_FOLLOWER || ($network === NETWORK_DIASPORA && $r[0]['rel'] == CONTACT_IS_SHARING)) {
|
if ($r[0]['rel'] == CONTACT_IS_FOLLOWER || ($network === NETWORK_DIASPORA && $r[0]['rel'] == CONTACT_IS_SHARING)) {
|
||||||
q("UPDATE `contact` SET `rel` = %d , `subhub` = %d, `readonly` = 0 WHERE `id` = %d AND `uid` = %d",
|
q("UPDATE `contact` SET `rel` = %d , `subhub` = %d, `readonly` = 0 WHERE `id` = %d AND `uid` = %d",
|
||||||
intval(CONTACT_IS_FRIEND),
|
intval(CONTACT_IS_FRIEND),
|
||||||
intval($subhub),
|
intval($subhub),
|
||||||
|
@ -197,29 +189,28 @@ function new_contact($uid,$url,$interactive = false) {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
|
|
||||||
// check service class limits
|
// check service class limits
|
||||||
|
|
||||||
$r = q("select count(*) as total from contact where uid = %d and pending = 0 and self = 0",
|
$r = q("SELECT COUNT(*) AS `total` FROM `contact` WHERE `uid` = %d AND `pending` = 0 AND `self` = 0",
|
||||||
intval($uid)
|
intval($uid)
|
||||||
);
|
);
|
||||||
if (dbm::is_result($r))
|
if (dbm::is_result($r))
|
||||||
$total_contacts = $r[0]['total'];
|
$total_contacts = $r[0]['total'];
|
||||||
|
|
||||||
if(! service_class_allows($uid,'total_contacts',$total_contacts)) {
|
if (! service_class_allows($uid,'total_contacts',$total_contacts)) {
|
||||||
$result['message'] .= upgrade_message();
|
$result['message'] .= upgrade_message();
|
||||||
return $result;
|
return $result;
|
||||||
}
|
}
|
||||||
|
|
||||||
$r = q("select count(network) as total from contact where uid = %d and network = '%s' and pending = 0 and self = 0",
|
$r = q("SELECT COUNT(`network`) AS `total` FROM `contact` WHERE `uid` = %d AND `network` = '%s' AND `pending` = 0 AND `self` = 0",
|
||||||
intval($uid),
|
intval($uid),
|
||||||
dbesc($network)
|
dbesc($network)
|
||||||
);
|
);
|
||||||
if (dbm::is_result($r))
|
if (dbm::is_result($r)) {
|
||||||
$total_network = $r[0]['total'];
|
$total_network = $r[0]['total'];
|
||||||
|
}
|
||||||
|
|
||||||
if(! service_class_allows($uid,'total_contacts_' . $network,$total_network)) {
|
if (! service_class_allows($uid,'total_contacts_' . $network,$total_network)) {
|
||||||
$result['message'] .= upgrade_message();
|
$result['message'] .= upgrade_message();
|
||||||
return $result;
|
return $result;
|
||||||
}
|
}
|
||||||
|
@ -268,8 +259,9 @@ function new_contact($uid,$url,$interactive = false) {
|
||||||
$result['cid'] = $contact_id;
|
$result['cid'] = $contact_id;
|
||||||
|
|
||||||
$def_gid = get_default_group($uid, $contact["network"]);
|
$def_gid = get_default_group($uid, $contact["network"]);
|
||||||
if (intval($def_gid))
|
if (intval($def_gid)) {
|
||||||
group_add_member($uid, '', $contact_id, $def_gid);
|
group_add_member($uid, '', $contact_id, $def_gid);
|
||||||
|
}
|
||||||
|
|
||||||
// Update the avatar
|
// Update the avatar
|
||||||
update_contact_avatar($ret['photo'],$uid,$contact_id);
|
update_contact_avatar($ret['photo'],$uid,$contact_id);
|
||||||
|
@ -285,7 +277,6 @@ function new_contact($uid,$url,$interactive = false) {
|
||||||
|
|
||||||
if (dbm::is_result($r)) {
|
if (dbm::is_result($r)) {
|
||||||
if (($contact['network'] == NETWORK_OSTATUS) && (strlen($contact['notify']))) {
|
if (($contact['network'] == NETWORK_OSTATUS) && (strlen($contact['notify']))) {
|
||||||
|
|
||||||
// create a follow slap
|
// create a follow slap
|
||||||
$item = array();
|
$item = array();
|
||||||
$item['verb'] = ACTIVITY_FOLLOW;
|
$item['verb'] = ACTIVITY_FOLLOW;
|
||||||
|
|
|
@ -231,8 +231,7 @@ function profile_sidebar($profile, $block = 0) {
|
||||||
if ($connect AND local_user()) {
|
if ($connect AND local_user()) {
|
||||||
if (isset($profile["url"])) {
|
if (isset($profile["url"])) {
|
||||||
$profile_url = normalise_link($profile["url"]);
|
$profile_url = normalise_link($profile["url"]);
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
$profile_url = normalise_link(App::get_baseurl()."/profile/".$profile["nickname"]);
|
$profile_url = normalise_link(App::get_baseurl()."/profile/".$profile["nickname"]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -638,49 +637,86 @@ function advanced_profile(App &$a) {
|
||||||
|
|
||||||
if($a->profile['marital']) $profile['marital'] = array( t('Status:'), $a->profile['marital']);
|
if($a->profile['marital']) $profile['marital'] = array( t('Status:'), $a->profile['marital']);
|
||||||
|
|
||||||
|
/// @TODO Maybe use x() here, plus below?
|
||||||
|
if ($a->profile['with']) {
|
||||||
|
$profile['marital']['with'] = $a->profile['with'];
|
||||||
|
}
|
||||||
|
|
||||||
if($a->profile['with']) $profile['marital']['with'] = $a->profile['with'];
|
if (strlen($a->profile['howlong']) && $a->profile['howlong'] !== '0000-00-00 00:00:00') {
|
||||||
|
|
||||||
if(strlen($a->profile['howlong']) && $a->profile['howlong'] !== '0000-00-00 00:00:00') {
|
|
||||||
$profile['howlong'] = relative_date($a->profile['howlong'], t('for %1$d %2$s'));
|
$profile['howlong'] = relative_date($a->profile['howlong'], t('for %1$d %2$s'));
|
||||||
}
|
}
|
||||||
|
|
||||||
if($a->profile['sexual']) $profile['sexual'] = array( t('Sexual Preference:'), $a->profile['sexual'] );
|
if ($a->profile['sexual']) {
|
||||||
|
$profile['sexual'] = array( t('Sexual Preference:'), $a->profile['sexual'] );
|
||||||
|
}
|
||||||
|
|
||||||
if($a->profile['homepage']) $profile['homepage'] = array( t('Homepage:'), linkify($a->profile['homepage']) );
|
if ($a->profile['homepage']) {
|
||||||
|
$profile['homepage'] = array( t('Homepage:'), linkify($a->profile['homepage']) );
|
||||||
|
}
|
||||||
|
|
||||||
if($a->profile['hometown']) $profile['hometown'] = array( t('Hometown:'), linkify($a->profile['hometown']) );
|
if ($a->profile['hometown']) {
|
||||||
|
$profile['hometown'] = array( t('Hometown:'), linkify($a->profile['hometown']) );
|
||||||
|
}
|
||||||
|
|
||||||
if($a->profile['pub_keywords']) $profile['pub_keywords'] = array( t('Tags:'), $a->profile['pub_keywords']);
|
if ($a->profile['pub_keywords']) {
|
||||||
|
$profile['pub_keywords'] = array( t('Tags:'), $a->profile['pub_keywords']);
|
||||||
|
}
|
||||||
|
|
||||||
if($a->profile['politic']) $profile['politic'] = array( t('Political Views:'), $a->profile['politic']);
|
if ($a->profile['politic']) {
|
||||||
|
$profile['politic'] = array( t('Political Views:'), $a->profile['politic']);
|
||||||
|
}
|
||||||
|
|
||||||
if($a->profile['religion']) $profile['religion'] = array( t('Religion:'), $a->profile['religion']);
|
if ($a->profile['religion']) {
|
||||||
|
$profile['religion'] = array( t('Religion:'), $a->profile['religion']);
|
||||||
|
}
|
||||||
|
|
||||||
if($txt = prepare_text($a->profile['about'])) $profile['about'] = array( t('About:'), $txt );
|
if ($txt = prepare_text($a->profile['about'])) {
|
||||||
|
$profile['about'] = array( t('About:'), $txt );
|
||||||
|
}
|
||||||
|
|
||||||
if($txt = prepare_text($a->profile['interest'])) $profile['interest'] = array( t('Hobbies/Interests:'), $txt);
|
if ($txt = prepare_text($a->profile['interest'])) {
|
||||||
|
$profile['interest'] = array( t('Hobbies/Interests:'), $txt);
|
||||||
|
}
|
||||||
|
|
||||||
if($txt = prepare_text($a->profile['likes'])) $profile['likes'] = array( t('Likes:'), $txt);
|
if ($txt = prepare_text($a->profile['likes'])) {
|
||||||
|
$profile['likes'] = array( t('Likes:'), $txt);
|
||||||
|
}
|
||||||
|
|
||||||
if($txt = prepare_text($a->profile['dislikes'])) $profile['dislikes'] = array( t('Dislikes:'), $txt);
|
if ($txt = prepare_text($a->profile['dislikes'])) {
|
||||||
|
$profile['dislikes'] = array( t('Dislikes:'), $txt);
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($txt = prepare_text($a->profile['contact'])) {
|
||||||
|
$profile['contact'] = array( t('Contact information and Social Networks:'), $txt);
|
||||||
|
}
|
||||||
|
|
||||||
if($txt = prepare_text($a->profile['contact'])) $profile['contact'] = array( t('Contact information and Social Networks:'), $txt);
|
if ($txt = prepare_text($a->profile['music'])) {
|
||||||
|
$profile['music'] = array( t('Musical interests:'), $txt);
|
||||||
|
}
|
||||||
|
|
||||||
if($txt = prepare_text($a->profile['music'])) $profile['music'] = array( t('Musical interests:'), $txt);
|
if ($txt = prepare_text($a->profile['book'])) {
|
||||||
|
$profile['book'] = array( t('Books, literature:'), $txt);
|
||||||
|
}
|
||||||
|
|
||||||
if($txt = prepare_text($a->profile['book'])) $profile['book'] = array( t('Books, literature:'), $txt);
|
if ($txt = prepare_text($a->profile['tv'])) {
|
||||||
|
$profile['tv'] = array( t('Television:'), $txt);
|
||||||
|
}
|
||||||
|
|
||||||
if($txt = prepare_text($a->profile['tv'])) $profile['tv'] = array( t('Television:'), $txt);
|
if ($txt = prepare_text($a->profile['film'])) {
|
||||||
|
$profile['film'] = array( t('Film/dance/culture/entertainment:'), $txt);
|
||||||
|
}
|
||||||
|
|
||||||
if($txt = prepare_text($a->profile['film'])) $profile['film'] = array( t('Film/dance/culture/entertainment:'), $txt);
|
if ($txt = prepare_text($a->profile['romance'])) {
|
||||||
|
$profile['romance'] = array( t('Love/Romance:'), $txt);
|
||||||
|
}
|
||||||
|
|
||||||
if($txt = prepare_text($a->profile['romance'])) $profile['romance'] = array( t('Love/Romance:'), $txt);
|
if ($txt = prepare_text($a->profile['work'])) {
|
||||||
|
$profile['work'] = array( t('Work/employment:'), $txt);
|
||||||
|
}
|
||||||
|
|
||||||
if($txt = prepare_text($a->profile['work'])) $profile['work'] = array( t('Work/employment:'), $txt);
|
if ($txt = prepare_text($a->profile['education'])) {
|
||||||
|
$profile['education'] = array( t('School/education:'), $txt );
|
||||||
if($txt = prepare_text($a->profile['education'])) $profile['education'] = array( t('School/education:'), $txt );
|
}
|
||||||
|
|
||||||
//show subcribed forum if it is enabled in the usersettings
|
//show subcribed forum if it is enabled in the usersettings
|
||||||
if (feature_enabled($uid,'forumlist_profile')) {
|
if (feature_enabled($uid,'forumlist_profile')) {
|
||||||
|
@ -705,11 +741,13 @@ function advanced_profile(App &$a) {
|
||||||
function profile_tabs($a, $is_owner=False, $nickname=Null){
|
function profile_tabs($a, $is_owner=False, $nickname=Null){
|
||||||
//echo "<pre>"; var_dump($a->user); killme();
|
//echo "<pre>"; var_dump($a->user); killme();
|
||||||
|
|
||||||
if (is_null($nickname))
|
if (is_null($nickname)) {
|
||||||
$nickname = $a->user['nickname'];
|
$nickname = $a->user['nickname'];
|
||||||
|
}
|
||||||
|
|
||||||
if(x($_GET,'tab'))
|
if (x($_GET,'tab')) {
|
||||||
$tab = notags(trim($_GET['tab']));
|
$tab = notags(trim($_GET['tab']));
|
||||||
|
}
|
||||||
|
|
||||||
$url = App::get_baseurl() . '/profile/' . $nickname;
|
$url = App::get_baseurl() . '/profile/' . $nickname;
|
||||||
|
|
||||||
|
|
|
@ -112,9 +112,10 @@ function do_like($item_id, $verb) {
|
||||||
intval($_SESSION['visitor_id']),
|
intval($_SESSION['visitor_id']),
|
||||||
intval($owner_uid)
|
intval($owner_uid)
|
||||||
);
|
);
|
||||||
if (dbm::is_result($r))
|
if (dbm::is_result($r)) {
|
||||||
$contact = $r[0];
|
$contact = $r[0];
|
||||||
}
|
}
|
||||||
|
}
|
||||||
if (! $contact) {
|
if (! $contact) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
|
@ -541,10 +541,11 @@ function parse_xml_string($s,$strict = true) {
|
||||||
libxml_use_internal_errors(true);
|
libxml_use_internal_errors(true);
|
||||||
|
|
||||||
$x = @simplexml_load_string($s2);
|
$x = @simplexml_load_string($s2);
|
||||||
if(! $x) {
|
if (! $x) {
|
||||||
logger('libxml: parse: error: ' . $s2, LOGGER_DATA);
|
logger('libxml: parse: error: ' . $s2, LOGGER_DATA);
|
||||||
foreach(libxml_get_errors() as $err)
|
foreach (libxml_get_errors() as $err) {
|
||||||
logger('libxml: parse: ' . $err->code." at ".$err->line.":".$err->column." : ".$err->message, LOGGER_DATA);
|
logger('libxml: parse: ' . $err->code." at ".$err->line.":".$err->column." : ".$err->message, LOGGER_DATA);
|
||||||
|
}
|
||||||
libxml_clear_errors();
|
libxml_clear_errors();
|
||||||
}
|
}
|
||||||
return $x;
|
return $x;
|
||||||
|
@ -553,8 +554,9 @@ function parse_xml_string($s,$strict = true) {
|
||||||
function scale_external_images($srctext, $include_link = true, $scale_replace = false) {
|
function scale_external_images($srctext, $include_link = true, $scale_replace = false) {
|
||||||
|
|
||||||
// Suppress "view full size"
|
// Suppress "view full size"
|
||||||
if (intval(get_config('system','no_view_full_size')))
|
if (intval(get_config('system','no_view_full_size'))) {
|
||||||
$include_link = false;
|
$include_link = false;
|
||||||
|
}
|
||||||
|
|
||||||
$a = get_app();
|
$a = get_app();
|
||||||
|
|
||||||
|
@ -563,38 +565,41 @@ function scale_external_images($srctext, $include_link = true, $scale_replace =
|
||||||
|
|
||||||
$matches = null;
|
$matches = null;
|
||||||
$c = preg_match_all('/\[img.*?\](.*?)\[\/img\]/ism',$s,$matches,PREG_SET_ORDER);
|
$c = preg_match_all('/\[img.*?\](.*?)\[\/img\]/ism',$s,$matches,PREG_SET_ORDER);
|
||||||
if($c) {
|
if ($c) {
|
||||||
require_once('include/Photo.php');
|
require_once('include/Photo.php');
|
||||||
foreach($matches as $mtch) {
|
foreach ($matches as $mtch) {
|
||||||
logger('scale_external_image: ' . $mtch[1]);
|
logger('scale_external_image: ' . $mtch[1]);
|
||||||
|
|
||||||
$hostname = str_replace('www.','',substr(App::get_baseurl(),strpos(App::get_baseurl(),'://')+3));
|
$hostname = str_replace('www.','',substr(App::get_baseurl(),strpos(App::get_baseurl(),'://')+3));
|
||||||
if(stristr($mtch[1],$hostname))
|
if (stristr($mtch[1],$hostname)) {
|
||||||
continue;
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
// $scale_replace, if passed, is an array of two elements. The
|
// $scale_replace, if passed, is an array of two elements. The
|
||||||
// first is the name of the full-size image. The second is the
|
// first is the name of the full-size image. The second is the
|
||||||
// name of a remote, scaled-down version of the full size image.
|
// name of a remote, scaled-down version of the full size image.
|
||||||
// This allows Friendica to display the smaller remote image if
|
// This allows Friendica to display the smaller remote image if
|
||||||
// one exists, while still linking to the full-size image
|
// one exists, while still linking to the full-size image
|
||||||
if($scale_replace)
|
if ($scale_replace) {
|
||||||
$scaled = str_replace($scale_replace[0], $scale_replace[1], $mtch[1]);
|
$scaled = str_replace($scale_replace[0], $scale_replace[1], $mtch[1]);
|
||||||
else
|
} else {
|
||||||
$scaled = $mtch[1];
|
$scaled = $mtch[1];
|
||||||
$i = @fetch_url($scaled);
|
}
|
||||||
if(! $i)
|
$i = fetch_url($scaled);
|
||||||
|
if (! $i) {
|
||||||
return $srctext;
|
return $srctext;
|
||||||
|
}
|
||||||
|
|
||||||
// guess mimetype from headers or filename
|
// guess mimetype from headers or filename
|
||||||
$type = guess_image_type($mtch[1],true);
|
$type = guess_image_type($mtch[1],true);
|
||||||
|
|
||||||
if($i) {
|
if ($i) {
|
||||||
$ph = new Photo($i, $type);
|
$ph = new Photo($i, $type);
|
||||||
if($ph->is_valid()) {
|
if ($ph->is_valid()) {
|
||||||
$orig_width = $ph->getWidth();
|
$orig_width = $ph->getWidth();
|
||||||
$orig_height = $ph->getHeight();
|
$orig_height = $ph->getHeight();
|
||||||
|
|
||||||
if($orig_width > 640 || $orig_height > 640) {
|
if ($orig_width > 640 || $orig_height > 640) {
|
||||||
|
|
||||||
$ph->scaleImage(640);
|
$ph->scaleImage(640);
|
||||||
$new_width = $ph->getWidth();
|
$new_width = $ph->getWidth();
|
||||||
|
@ -620,7 +625,7 @@ function scale_external_images($srctext, $include_link = true, $scale_replace =
|
||||||
function fix_contact_ssl_policy(&$contact,$new_policy) {
|
function fix_contact_ssl_policy(&$contact,$new_policy) {
|
||||||
|
|
||||||
$ssl_changed = false;
|
$ssl_changed = false;
|
||||||
if((intval($new_policy) == SSL_POLICY_SELFSIGN || $new_policy === 'self') && strstr($contact['url'],'https:')) {
|
if ((intval($new_policy) == SSL_POLICY_SELFSIGN || $new_policy === 'self') && strstr($contact['url'],'https:')) {
|
||||||
$ssl_changed = true;
|
$ssl_changed = true;
|
||||||
$contact['url'] = str_replace('https:','http:',$contact['url']);
|
$contact['url'] = str_replace('https:','http:',$contact['url']);
|
||||||
$contact['request'] = str_replace('https:','http:',$contact['request']);
|
$contact['request'] = str_replace('https:','http:',$contact['request']);
|
||||||
|
@ -630,7 +635,7 @@ function fix_contact_ssl_policy(&$contact,$new_policy) {
|
||||||
$contact['poco'] = str_replace('https:','http:',$contact['poco']);
|
$contact['poco'] = str_replace('https:','http:',$contact['poco']);
|
||||||
}
|
}
|
||||||
|
|
||||||
if((intval($new_policy) == SSL_POLICY_FULL || $new_policy === 'full') && strstr($contact['url'],'http:')) {
|
if ((intval($new_policy) == SSL_POLICY_FULL || $new_policy === 'full') && strstr($contact['url'],'http:')) {
|
||||||
$ssl_changed = true;
|
$ssl_changed = true;
|
||||||
$contact['url'] = str_replace('http:','https:',$contact['url']);
|
$contact['url'] = str_replace('http:','https:',$contact['url']);
|
||||||
$contact['request'] = str_replace('http:','https:',$contact['request']);
|
$contact['request'] = str_replace('http:','https:',$contact['request']);
|
||||||
|
@ -640,15 +645,15 @@ function fix_contact_ssl_policy(&$contact,$new_policy) {
|
||||||
$contact['poco'] = str_replace('http:','https:',$contact['poco']);
|
$contact['poco'] = str_replace('http:','https:',$contact['poco']);
|
||||||
}
|
}
|
||||||
|
|
||||||
if($ssl_changed) {
|
if ($ssl_changed) {
|
||||||
q("update contact set
|
q("UPDATE `contact` SET
|
||||||
url = '%s',
|
`url` = '%s',
|
||||||
request = '%s',
|
`request` = '%s',
|
||||||
notify = '%s',
|
`notify` = '%s',
|
||||||
poll = '%s',
|
`poll` = '%s',
|
||||||
confirm = '%s',
|
`confirm` = '%s',
|
||||||
poco = '%s'
|
`poco` = '%s'
|
||||||
where id = %d limit 1",
|
WHERE `id` = %d LIMIT 1",
|
||||||
dbesc($contact['url']),
|
dbesc($contact['url']),
|
||||||
dbesc($contact['request']),
|
dbesc($contact['request']),
|
||||||
dbesc($contact['notify']),
|
dbesc($contact['notify']),
|
||||||
|
|
|
@ -413,7 +413,7 @@ function get_theme_info($theme){
|
||||||
function get_theme_screenshot($theme) {
|
function get_theme_screenshot($theme) {
|
||||||
$exts = array('.png','.jpg');
|
$exts = array('.png','.jpg');
|
||||||
foreach($exts as $ext) {
|
foreach($exts as $ext) {
|
||||||
if(file_exists('view/theme/' . $theme . '/screenshot' . $ext)) {
|
if (file_exists('view/theme/' . $theme . '/screenshot' . $ext)) {
|
||||||
return(App::get_baseurl() . '/view/theme/' . $theme . '/screenshot' . $ext);
|
return(App::get_baseurl() . '/view/theme/' . $theme . '/screenshot' . $ext);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -425,8 +425,8 @@ if (! function_exists('uninstall_theme')){
|
||||||
function uninstall_theme($theme){
|
function uninstall_theme($theme){
|
||||||
logger("Addons: uninstalling theme " . $theme);
|
logger("Addons: uninstalling theme " . $theme);
|
||||||
|
|
||||||
@include_once("view/theme/$theme/theme.php");
|
include_once("view/theme/$theme/theme.php");
|
||||||
if(function_exists("{$theme}_uninstall")) {
|
if (function_exists("{$theme}_uninstall")) {
|
||||||
$func = "{$theme}_uninstall";
|
$func = "{$theme}_uninstall";
|
||||||
$func();
|
$func();
|
||||||
}
|
}
|
||||||
|
@ -436,19 +436,19 @@ if (! function_exists('install_theme')){
|
||||||
function install_theme($theme) {
|
function install_theme($theme) {
|
||||||
// silently fail if theme was removed
|
// silently fail if theme was removed
|
||||||
|
|
||||||
if(! file_exists("view/theme/$theme/theme.php"))
|
if (! file_exists("view/theme/$theme/theme.php")) {
|
||||||
return false;
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
logger("Addons: installing theme $theme");
|
logger("Addons: installing theme $theme");
|
||||||
|
|
||||||
@include_once("view/theme/$theme/theme.php");
|
include_once("view/theme/$theme/theme.php");
|
||||||
|
|
||||||
if(function_exists("{$theme}_install")) {
|
if (function_exists("{$theme}_install")) {
|
||||||
$func = "{$theme}_install";
|
$func = "{$theme}_install";
|
||||||
$func();
|
$func();
|
||||||
return true;
|
return true;
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
logger("Addons: FAILED installing theme $theme");
|
logger("Addons: FAILED installing theme $theme");
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
@ -467,10 +467,9 @@ function install_theme($theme) {
|
||||||
|
|
||||||
function service_class_allows($uid,$property,$usage = false) {
|
function service_class_allows($uid,$property,$usage = false) {
|
||||||
|
|
||||||
if($uid == local_user()) {
|
if ($uid == local_user()) {
|
||||||
$service_class = $a->user['service_class'];
|
$service_class = $a->user['service_class'];
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
$r = q("SELECT `service_class` FROM `user` WHERE `uid` = %d LIMIT 1",
|
$r = q("SELECT `service_class` FROM `user` WHERE `uid` = %d LIMIT 1",
|
||||||
intval($uid)
|
intval($uid)
|
||||||
);
|
);
|
||||||
|
@ -478,18 +477,23 @@ function service_class_allows($uid,$property,$usage = false) {
|
||||||
$service_class = $r[0]['service_class'];
|
$service_class = $r[0]['service_class'];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if(! x($service_class))
|
|
||||||
return true; // everything is allowed
|
if (! x($service_class)) [
|
||||||
|
// everything is allowed
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
$arr = get_config('service_class',$service_class);
|
$arr = get_config('service_class',$service_class);
|
||||||
if(! is_array($arr) || (! count($arr)))
|
if (! is_array($arr) || (! count($arr))) {
|
||||||
return true;
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
if($usage === false)
|
if ($usage === false) {
|
||||||
return ((x($arr[$property])) ? (bool) $arr['property'] : true);
|
return ((x($arr[$property])) ? (bool) $arr['property'] : true);
|
||||||
else {
|
} else {
|
||||||
if(! array_key_exists($property,$arr))
|
if (! array_key_exists($property,$arr)) {
|
||||||
return true;
|
return true;
|
||||||
|
}
|
||||||
return (((intval($usage)) < intval($arr[$property])) ? true : false);
|
return (((intval($usage)) < intval($arr[$property])) ? true : false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -497,10 +501,9 @@ function service_class_allows($uid,$property,$usage = false) {
|
||||||
|
|
||||||
function service_class_fetch($uid,$property) {
|
function service_class_fetch($uid,$property) {
|
||||||
|
|
||||||
if($uid == local_user()) {
|
if ($uid == local_user()) {
|
||||||
$service_class = $a->user['service_class'];
|
$service_class = $a->user['service_class'];
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
$r = q("SELECT `service_class` FROM `user` WHERE `uid` = %d LIMIT 1",
|
$r = q("SELECT `service_class` FROM `user` WHERE `uid` = %d LIMIT 1",
|
||||||
intval($uid)
|
intval($uid)
|
||||||
);
|
);
|
||||||
|
|
|
@ -220,8 +220,9 @@ function poco_check($profile_url, $name, $network, $profile_photo, $about, $loca
|
||||||
$r = q("SELECT `network` FROM `contact` WHERE `nurl` = '%s' AND `network` != '' AND `network` != '%s' LIMIT 1",
|
$r = q("SELECT `network` FROM `contact` WHERE `nurl` = '%s' AND `network` != '' AND `network` != '%s' LIMIT 1",
|
||||||
dbesc(normalise_link($profile_url)), dbesc(NETWORK_STATUSNET)
|
dbesc(normalise_link($profile_url)), dbesc(NETWORK_STATUSNET)
|
||||||
);
|
);
|
||||||
if (dbm::is_result($r))
|
if (dbm::is_result($r)) {
|
||||||
$network = $r[0]["network"];
|
$network = $r[0]["network"];
|
||||||
|
}
|
||||||
|
|
||||||
if (($network == "") OR ($network == NETWORK_OSTATUS)) {
|
if (($network == "") OR ($network == NETWORK_OSTATUS)) {
|
||||||
$r = q("SELECT `network`, `url` FROM `contact` WHERE `alias` IN ('%s', '%s') AND `network` != '' AND `network` != '%s' LIMIT 1",
|
$r = q("SELECT `network`, `url` FROM `contact` WHERE `alias` IN ('%s', '%s') AND `network` != '' AND `network` != '%s' LIMIT 1",
|
||||||
|
|
|
@ -1165,12 +1165,12 @@ function admin_page_users_post(App &$a){
|
||||||
|
|
||||||
check_form_security_token_redirectOnErr('/admin/users', 'admin_users');
|
check_form_security_token_redirectOnErr('/admin/users', 'admin_users');
|
||||||
|
|
||||||
if(!($nu_name==="") && !($nu_email==="") && !($nu_nickname==="")) {
|
if (!($nu_name==="") && !($nu_email==="") && !($nu_nickname==="")) {
|
||||||
require_once('include/user.php');
|
require_once('include/user.php');
|
||||||
|
|
||||||
$result = create_user(array('username'=>$nu_name, 'email'=>$nu_email,
|
$result = create_user(array('username'=>$nu_name, 'email'=>$nu_email,
|
||||||
'nickname'=>$nu_nickname, 'verified'=>1, 'language'=>$nu_language));
|
'nickname'=>$nu_nickname, 'verified'=>1, 'language'=>$nu_language));
|
||||||
if(! $result['success']) {
|
if (! $result['success']) {
|
||||||
notice($result['message']);
|
notice($result['message']);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -1851,10 +1851,10 @@ function admin_page_themes(App &$a){
|
||||||
* @param App $a
|
* @param App $a
|
||||||
*/
|
*/
|
||||||
function admin_page_logs_post(App &$a) {
|
function admin_page_logs_post(App &$a) {
|
||||||
if(x($_POST,"page_logs")) {
|
if (x($_POST,"page_logs")) {
|
||||||
check_form_security_token_redirectOnErr('/admin/logs', 'admin_logs');
|
check_form_security_token_redirectOnErr('/admin/logs', 'admin_logs');
|
||||||
|
|
||||||
$logfile = ((x($_POST,'logfile')) ? notags(trim($_POST['logfile'])) : '');
|
$logfile = (x($_POST,'logfile')) ? notags(trim($_POST['logfile'])) : '');
|
||||||
$debugging = ((x($_POST,'debugging')) ? true : false);
|
$debugging = ((x($_POST,'debugging')) ? true : false);
|
||||||
$loglevel = ((x($_POST,'loglevel')) ? intval(trim($_POST['loglevel'])) : 0);
|
$loglevel = ((x($_POST,'loglevel')) ? intval(trim($_POST['loglevel'])) : 0);
|
||||||
|
|
||||||
|
|
|
@ -28,19 +28,22 @@ function contacts_init(App &$a) {
|
||||||
require_once('include/group.php');
|
require_once('include/group.php');
|
||||||
require_once('include/contact_widgets.php');
|
require_once('include/contact_widgets.php');
|
||||||
|
|
||||||
if ($_GET['nets'] == "all")
|
if ($_GET['nets'] == "all") {
|
||||||
$_GET['nets'] = "";
|
$_GET['nets'] = "";
|
||||||
|
}
|
||||||
|
|
||||||
if(! x($a->page,'aside'))
|
if (! x($a->page,'aside')) {
|
||||||
$a->page['aside'] = '';
|
$a->page['aside'] = '';
|
||||||
|
}
|
||||||
|
|
||||||
if($contact_id) {
|
if ($contact_id) {
|
||||||
$a->data['contact'] = $r[0];
|
$a->data['contact'] = $r[0];
|
||||||
|
|
||||||
if (($a->data['contact']['network'] != "") AND ($a->data['contact']['network'] != NETWORK_DFRN)) {
|
if (($a->data['contact']['network'] != "") AND ($a->data['contact']['network'] != NETWORK_DFRN)) {
|
||||||
$networkname = format_network_name($a->data['contact']['network'],$a->data['contact']['url']);
|
$networkname = format_network_name($a->data['contact']['network'],$a->data['contact']['url']);
|
||||||
} else
|
} else {
|
||||||
$networkname = '';
|
$networkname = '';
|
||||||
|
}
|
||||||
|
|
||||||
$vcard_widget = replace_macros(get_markup_template("vcard-widget.tpl"),array(
|
$vcard_widget = replace_macros(get_markup_template("vcard-widget.tpl"),array(
|
||||||
'$name' => htmlentities($a->data['contact']['name']),
|
'$name' => htmlentities($a->data['contact']['name']),
|
||||||
|
|
|
@ -21,7 +21,6 @@ function delegate_content(App &$a) {
|
||||||
goaway(App::get_baseurl() . '/delegate');
|
goaway(App::get_baseurl() . '/delegate');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
$id = $a->argv[2];
|
$id = $a->argv[2];
|
||||||
|
|
||||||
$r = q("select `nickname` from user where uid = %d limit 1",
|
$r = q("select `nickname` from user where uid = %d limit 1",
|
||||||
|
@ -45,12 +44,11 @@ function delegate_content(App &$a) {
|
||||||
if ($a->argc > 2 && $a->argv[1] === 'remove' && intval($a->argv[2])) {
|
if ($a->argc > 2 && $a->argv[1] === 'remove' && intval($a->argv[2])) {
|
||||||
|
|
||||||
// delegated admins can view but not change delegation permissions
|
// delegated admins can view but not change delegation permissions
|
||||||
|
|
||||||
if (x($_SESSION,'submanage') && intval($_SESSION['submanage'])) {
|
if (x($_SESSION,'submanage') && intval($_SESSION['submanage'])) {
|
||||||
goaway(App::get_baseurl() . '/delegate');
|
goaway(App::get_baseurl() . '/delegate');
|
||||||
}
|
}
|
||||||
|
|
||||||
q("delete from manage where uid = %d and mid = %d limit 1",
|
q("DELETE FROM `manage` WHERE `uid` = %d AND `mid` = %d LIMIT 1",
|
||||||
intval($a->argv[2]),
|
intval($a->argv[2]),
|
||||||
intval(local_user())
|
intval(local_user())
|
||||||
);
|
);
|
||||||
|
|
|
@ -810,19 +810,17 @@ function dfrn_request_content(App &$a) {
|
||||||
|
|
||||||
// At first look if an address was provided
|
// At first look if an address was provided
|
||||||
// Otherwise take the local address
|
// Otherwise take the local address
|
||||||
if (x($_GET,'addr') AND ($_GET['addr'] != ""))
|
if (x($_GET,'addr') AND ($_GET['addr'] != "")) {
|
||||||
$myaddr = hex2bin($_GET['addr']);
|
$myaddr = hex2bin($_GET['addr']);
|
||||||
elseif (x($_GET,'address') AND ($_GET['address'] != ""))
|
} elseif (x($_GET,'address') AND ($_GET['address'] != "")) {
|
||||||
$myaddr = $_GET['address'];
|
$myaddr = $_GET['address'];
|
||||||
elseif (local_user()) {
|
} elseif (local_user()) {
|
||||||
if (strlen($a->path)) {
|
if (strlen($a->path)) {
|
||||||
$myaddr = App::get_baseurl() . '/profile/' . $a->user['nickname'];
|
$myaddr = App::get_baseurl() . '/profile/' . $a->user['nickname'];
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
$myaddr = $a->user['nickname'] . '@' . substr(z_root(), strpos(z_root(),'://') + 3 );
|
$myaddr = $a->user['nickname'] . '@' . substr(z_root(), strpos(z_root(),'://') + 3 );
|
||||||
}
|
}
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
// last, try a zrl
|
// last, try a zrl
|
||||||
$myaddr = get_my_url();
|
$myaddr = get_my_url();
|
||||||
}
|
}
|
||||||
|
@ -840,8 +838,7 @@ function dfrn_request_content(App &$a) {
|
||||||
|
|
||||||
if ($a->profile['page-flags'] == PAGE_NORMAL) {
|
if ($a->profile['page-flags'] == PAGE_NORMAL) {
|
||||||
$tpl = get_markup_template('dfrn_request.tpl');
|
$tpl = get_markup_template('dfrn_request.tpl');
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
$tpl = get_markup_template('auto_request.tpl');
|
$tpl = get_markup_template('auto_request.tpl');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -850,10 +847,12 @@ function dfrn_request_content(App &$a) {
|
||||||
// see if we are allowed to have NETWORK_MAIL2 contacts
|
// see if we are allowed to have NETWORK_MAIL2 contacts
|
||||||
|
|
||||||
$mail_disabled = ((function_exists('imap_open') && (! get_config('system','imap_disabled'))) ? 0 : 1);
|
$mail_disabled = ((function_exists('imap_open') && (! get_config('system','imap_disabled'))) ? 0 : 1);
|
||||||
if(get_config('system','dfrn_only'))
|
|
||||||
$mail_disabled = 1;
|
|
||||||
|
|
||||||
if(! $mail_disabled) {
|
if (get_config('system','dfrn_only')) {
|
||||||
|
$mail_disabled = 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (! $mail_disabled) {
|
||||||
$r = q("SELECT * FROM `mailacct` WHERE `uid` = %d LIMIT 1",
|
$r = q("SELECT * FROM `mailacct` WHERE `uid` = %d LIMIT 1",
|
||||||
intval($a->profile['uid'])
|
intval($a->profile['uid'])
|
||||||
);
|
);
|
||||||
|
|
|
@ -354,7 +354,7 @@ function events_content(App &$a) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$events=array();
|
$events = array();
|
||||||
|
|
||||||
// transform the event in a usable array
|
// transform the event in a usable array
|
||||||
if (dbm::is_result($r)) {
|
if (dbm::is_result($r)) {
|
||||||
|
|
|
@ -31,8 +31,7 @@ function group_post(App &$a) {
|
||||||
if ($r) {
|
if ($r) {
|
||||||
goaway(App::get_baseurl() . '/group/' . $r);
|
goaway(App::get_baseurl() . '/group/' . $r);
|
||||||
}
|
}
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
notice( t('Could not create group.') . EOL );
|
notice( t('Could not create group.') . EOL );
|
||||||
}
|
}
|
||||||
goaway(App::get_baseurl() . '/group');
|
goaway(App::get_baseurl() . '/group');
|
||||||
|
@ -92,7 +91,7 @@ function group_content(App &$a) {
|
||||||
'$submit' => t('Save Group'),
|
'$submit' => t('Save Group'),
|
||||||
);
|
);
|
||||||
|
|
||||||
if(($a->argc == 2) && ($a->argv[1] === 'new')) {
|
if (($a->argc == 2) && ($a->argv[1] === 'new')) {
|
||||||
|
|
||||||
return replace_macros($tpl, $context + array(
|
return replace_macros($tpl, $context + array(
|
||||||
'$title' => t('Create a group of contacts/friends.'),
|
'$title' => t('Create a group of contacts/friends.'),
|
||||||
|
|
|
@ -52,4 +52,3 @@ function hcard_init(App &$a) {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -581,7 +581,6 @@ function load_database_rem($v, $i){
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
function load_database($db) {
|
function load_database($db) {
|
||||||
|
|
||||||
require_once("include/dbstructure.php");
|
require_once("include/dbstructure.php");
|
||||||
|
|
|
@ -120,7 +120,7 @@ function invite_content(App &$a) {
|
||||||
if (strlen($dirloc)) {
|
if (strlen($dirloc)) {
|
||||||
if ($a->config['register_policy'] == REGISTER_CLOSED) {
|
if ($a->config['register_policy'] == REGISTER_CLOSED) {
|
||||||
$linktxt = sprintf( t('Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks.'), $dirloc . '/siteinfo');
|
$linktxt = sprintf( t('Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks.'), $dirloc . '/siteinfo');
|
||||||
} elseif($a->config['register_policy'] != REGISTER_CLOSED) {
|
} elseif ($a->config['register_policy'] != REGISTER_CLOSED) {
|
||||||
$linktxt = sprintf( t('To accept this invitation, please visit and register at %s or any other public Friendica website.'), App::get_baseurl())
|
$linktxt = sprintf( t('To accept this invitation, please visit and register at %s or any other public Friendica website.'), App::get_baseurl())
|
||||||
. "\r\n" . "\r\n" . sprintf( t('Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join.'),$dirloc . '/siteinfo');
|
. "\r\n" . "\r\n" . sprintf( t('Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join.'),$dirloc . '/siteinfo');
|
||||||
}
|
}
|
||||||
|
|
11
mod/item.php
11
mod/item.php
|
@ -620,16 +620,17 @@ function item_post(App &$a) {
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
$success = handle_tag($a, $body, $inform, $str_tags, (local_user()) ? local_user() : $profile_uid , $tag, $network);
|
$success = handle_tag($a, $body, $inform, $str_tags, (local_user()) ? local_user() : $profile_uid , $tag, $network);
|
||||||
if($success['replaced'])
|
if ($success['replaced']) {
|
||||||
$tagged[] = $tag;
|
$tagged[] = $tag;
|
||||||
if(is_array($success['contact']) && intval($success['contact']['prv'])) {
|
}
|
||||||
|
if (is_array($success['contact']) && intval($success['contact']['prv'])) {
|
||||||
$private_forum = true;
|
$private_forum = true;
|
||||||
$private_id = $success['contact']['id'];
|
$private_id = $success['contact']['id'];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if(($private_forum) && (! $parent) && (! $private)) {
|
if (($private_forum) && (! $parent) && (! $private)) {
|
||||||
// we tagged a private forum in a top level post and the message was public.
|
// we tagged a private forum in a top level post and the message was public.
|
||||||
// Restrict it.
|
// Restrict it.
|
||||||
$private = 1;
|
$private = 1;
|
||||||
|
@ -639,8 +640,8 @@ function item_post(App &$a) {
|
||||||
$attachments = '';
|
$attachments = '';
|
||||||
$match = false;
|
$match = false;
|
||||||
|
|
||||||
if(preg_match_all('/(\[attachment\]([0-9]+)\[\/attachment\])/',$body,$match)) {
|
if (preg_match_all('/(\[attachment\]([0-9]+)\[\/attachment\])/',$body,$match)) {
|
||||||
foreach($match[2] as $mtch) {
|
foreach ($match[2] as $mtch) {
|
||||||
$r = q("SELECT `id`,`filename`,`filesize`,`filetype` FROM `attach` WHERE `uid` = %d AND `id` = %d LIMIT 1",
|
$r = q("SELECT `id`,`filename`,`filesize`,`filetype` FROM `attach` WHERE `uid` = %d AND `id` = %d LIMIT 1",
|
||||||
intval($profile_uid),
|
intval($profile_uid),
|
||||||
intval($mtch)
|
intval($mtch)
|
||||||
|
|
|
@ -25,7 +25,6 @@ function network_init(App &$a) {
|
||||||
parse_str($query_string, $query_array);
|
parse_str($query_string, $query_array);
|
||||||
array_shift($query_array);
|
array_shift($query_array);
|
||||||
|
|
||||||
|
|
||||||
// fetch last used network view and redirect if needed
|
// fetch last used network view and redirect if needed
|
||||||
if (! $is_a_date_query) {
|
if (! $is_a_date_query) {
|
||||||
$sel_tabs = network_query_get_sel_tab($a);
|
$sel_tabs = network_query_get_sel_tab($a);
|
||||||
|
@ -42,10 +41,9 @@ function network_init(App &$a) {
|
||||||
$net_baseurl = '/network';
|
$net_baseurl = '/network';
|
||||||
$net_args = array();
|
$net_args = array();
|
||||||
|
|
||||||
if($remember_group) {
|
if ($remember_group) {
|
||||||
$net_baseurl .= '/' . $last_sel_groups; // Note that the group number must come before the "/new" tab selection
|
$net_baseurl .= '/' . $last_sel_groups; // Note that the group number must come before the "/new" tab selection
|
||||||
}
|
} elseif($sel_groups !== false) {
|
||||||
else if($sel_groups !== false) {
|
|
||||||
$net_baseurl .= '/' . $sel_groups;
|
$net_baseurl .= '/' . $sel_groups;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
<?php
|
<?php
|
||||||
require_once('include/NotificationsManager.php');
|
require_once('include/NotificationsManager.php');
|
||||||
|
|
||||||
|
|
||||||
function notify_init(App &$a) {
|
function notify_init(App &$a) {
|
||||||
if (! local_user()) {
|
if (! local_user()) {
|
||||||
return;
|
return;
|
||||||
|
|
|
@ -74,24 +74,24 @@ function profile_content(&$a, $update = 0) {
|
||||||
|
|
||||||
$category = $datequery = $datequery2 = '';
|
$category = $datequery = $datequery2 = '';
|
||||||
|
|
||||||
if($a->argc > 2) {
|
if ($a->argc > 2) {
|
||||||
for($x = 2; $x < $a->argc; $x ++) {
|
for ($x = 2; $x < $a->argc; $x ++) {
|
||||||
if(is_a_date_arg($a->argv[$x])) {
|
if (is_a_date_arg($a->argv[$x])) {
|
||||||
if($datequery)
|
if ($datequery) {
|
||||||
$datequery2 = escape_tags($a->argv[$x]);
|
$datequery2 = escape_tags($a->argv[$x]);
|
||||||
else
|
} else {
|
||||||
$datequery = escape_tags($a->argv[$x]);
|
$datequery = escape_tags($a->argv[$x]);
|
||||||
}
|
} else {
|
||||||
else
|
|
||||||
$category = $a->argv[$x];
|
$category = $a->argv[$x];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if(! x($category)) {
|
if (! x($category)) {
|
||||||
$category = ((x($_GET,'category')) ? $_GET['category'] : '');
|
$category = ((x($_GET,'category')) ? $_GET['category'] : '');
|
||||||
}
|
}
|
||||||
|
|
||||||
if(get_config('system','block_public') && (! local_user()) && (! remote_user())) {
|
if (get_config('system','block_public') && (! local_user()) && (! remote_user())) {
|
||||||
return login();
|
return login();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -106,32 +106,30 @@ function profile_content(&$a, $update = 0) {
|
||||||
$tab = 'posts';
|
$tab = 'posts';
|
||||||
$o = '';
|
$o = '';
|
||||||
|
|
||||||
if($update) {
|
if ($update) {
|
||||||
// Ensure we've got a profile owner if updating.
|
// Ensure we've got a profile owner if updating.
|
||||||
$a->profile['profile_uid'] = $update;
|
$a->profile['profile_uid'] = $update;
|
||||||
}
|
} else {
|
||||||
else {
|
if ($a->profile['profile_uid'] == local_user()) {
|
||||||
if($a->profile['profile_uid'] == local_user()) {
|
|
||||||
nav_set_selected('home');
|
nav_set_selected('home');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
$contact = null;
|
$contact = null;
|
||||||
$remote_contact = false;
|
$remote_contact = false;
|
||||||
|
|
||||||
$contact_id = 0;
|
$contact_id = 0;
|
||||||
|
|
||||||
if(is_array($_SESSION['remote'])) {
|
if (is_array($_SESSION['remote'])) {
|
||||||
foreach($_SESSION['remote'] as $v) {
|
foreach ($_SESSION['remote'] as $v) {
|
||||||
if($v['uid'] == $a->profile['profile_uid']) {
|
if ($v['uid'] == $a->profile['profile_uid']) {
|
||||||
$contact_id = $v['cid'];
|
$contact_id = $v['cid'];
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if($contact_id) {
|
if ($contact_id) {
|
||||||
$groups = init_groups_visitor($contact_id);
|
$groups = init_groups_visitor($contact_id);
|
||||||
$r = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
|
$r = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
|
||||||
intval($contact_id),
|
intval($contact_id),
|
||||||
|
@ -143,8 +141,8 @@ function profile_content(&$a, $update = 0) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if(! $remote_contact) {
|
if (! $remote_contact) {
|
||||||
if(local_user()) {
|
if (local_user()) {
|
||||||
$contact_id = $_SESSION['cid'];
|
$contact_id = $_SESSION['cid'];
|
||||||
$contact = $a->contact;
|
$contact = $a->contact;
|
||||||
}
|
}
|
||||||
|
@ -152,32 +150,29 @@ function profile_content(&$a, $update = 0) {
|
||||||
|
|
||||||
$is_owner = ((local_user()) && (local_user() == $a->profile['profile_uid']) ? true : false);
|
$is_owner = ((local_user()) && (local_user() == $a->profile['profile_uid']) ? true : false);
|
||||||
|
|
||||||
if($a->profile['hidewall'] && (! $is_owner) && (! $remote_contact)) {
|
if ($a->profile['hidewall'] && (! $is_owner) && (! $remote_contact)) {
|
||||||
notice( t('Access to this profile has been restricted.') . EOL);
|
notice( t('Access to this profile has been restricted.') . EOL);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(! $update) {
|
if (! $update) {
|
||||||
|
if (x($_GET,'tab'))
|
||||||
|
|
||||||
if(x($_GET,'tab'))
|
|
||||||
$tab = notags(trim($_GET['tab']));
|
$tab = notags(trim($_GET['tab']));
|
||||||
|
|
||||||
$o.=profile_tabs($a, $is_owner, $a->profile['nickname']);
|
$o.=profile_tabs($a, $is_owner, $a->profile['nickname']);
|
||||||
|
|
||||||
|
|
||||||
if($tab === 'profile') {
|
if ($tab === 'profile') {
|
||||||
$o .= advanced_profile($a);
|
$o .= advanced_profile($a);
|
||||||
call_hooks('profile_advanced',$o);
|
call_hooks('profile_advanced',$o);
|
||||||
return $o;
|
return $o;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
$o .= common_friends_visitor_widget($a->profile['profile_uid']);
|
$o .= common_friends_visitor_widget($a->profile['profile_uid']);
|
||||||
|
|
||||||
|
if (x($_SESSION,'new_member') && $_SESSION['new_member'] && $is_owner) {
|
||||||
if(x($_SESSION,'new_member') && $_SESSION['new_member'] && $is_owner)
|
|
||||||
$o .= '<a href="newmember" id="newmember-tips" style="font-size: 1.2em;"><b>' . t('Tips for New Members') . '</b></a>' . EOL;
|
$o .= '<a href="newmember" id="newmember-tips" style="font-size: 1.2em;"><b>' . t('Tips for New Members') . '</b></a>' . EOL;
|
||||||
|
}
|
||||||
|
|
||||||
$commpage = (($a->profile['page-flags'] == PAGE_COMMUNITY) ? true : false);
|
$commpage = (($a->profile['page-flags'] == PAGE_COMMUNITY) ? true : false);
|
||||||
$commvisitor = (($commpage && $remote_contact == true) ? true : false);
|
$commvisitor = (($commpage && $remote_contact == true) ? true : false);
|
||||||
|
@ -185,7 +180,7 @@ function profile_content(&$a, $update = 0) {
|
||||||
$a->page['aside'] .= posted_date_widget(App::get_baseurl(true) . '/profile/' . $a->profile['nickname'],$a->profile['profile_uid'],true);
|
$a->page['aside'] .= posted_date_widget(App::get_baseurl(true) . '/profile/' . $a->profile['nickname'],$a->profile['profile_uid'],true);
|
||||||
$a->page['aside'] .= categories_widget(App::get_baseurl(true) . '/profile/' . $a->profile['nickname'],(x($category) ? xmlify($category) : ''));
|
$a->page['aside'] .= categories_widget(App::get_baseurl(true) . '/profile/' . $a->profile['nickname'],(x($category) ? xmlify($category) : ''));
|
||||||
|
|
||||||
if(can_write_wall($a,$a->profile['profile_uid'])) {
|
if (can_write_wall($a,$a->profile['profile_uid'])) {
|
||||||
|
|
||||||
$x = array(
|
$x = array(
|
||||||
'is_owner' => $is_owner,
|
'is_owner' => $is_owner,
|
||||||
|
@ -215,7 +210,7 @@ function profile_content(&$a, $update = 0) {
|
||||||
$sql_extra = item_permissions_sql($a->profile['profile_uid'],$remote_contact,$groups);
|
$sql_extra = item_permissions_sql($a->profile['profile_uid'],$remote_contact,$groups);
|
||||||
|
|
||||||
|
|
||||||
if($update) {
|
if ($update) {
|
||||||
|
|
||||||
$r = q("SELECT distinct(parent) AS `item_id`, `item`.`network` AS `item_network`
|
$r = q("SELECT distinct(parent) AS `item_id`, `item`.`network` AS `item_network`
|
||||||
FROM `item` INNER JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
|
FROM `item` INNER JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
|
||||||
|
@ -234,16 +229,16 @@ function profile_content(&$a, $update = 0) {
|
||||||
} else {
|
} else {
|
||||||
$sql_post_table = "";
|
$sql_post_table = "";
|
||||||
|
|
||||||
if(x($category)) {
|
if (x($category)) {
|
||||||
$sql_post_table = sprintf("INNER JOIN (SELECT `oid` FROM `term` WHERE `term` = '%s' AND `otype` = %d AND `type` = %d AND `uid` = %d ORDER BY `tid` DESC) AS `term` ON `item`.`id` = `term`.`oid` ",
|
$sql_post_table = sprintf("INNER JOIN (SELECT `oid` FROM `term` WHERE `term` = '%s' AND `otype` = %d AND `type` = %d AND `uid` = %d ORDER BY `tid` DESC) AS `term` ON `item`.`id` = `term`.`oid` ",
|
||||||
dbesc(protect_sprintf($category)), intval(TERM_OBJ_POST), intval(TERM_CATEGORY), intval($a->profile['profile_uid']));
|
dbesc(protect_sprintf($category)), intval(TERM_OBJ_POST), intval(TERM_CATEGORY), intval($a->profile['profile_uid']));
|
||||||
//$sql_extra .= protect_sprintf(file_tag_file_query('item',$category,'category'));
|
//$sql_extra .= protect_sprintf(file_tag_file_query('item',$category,'category'));
|
||||||
}
|
}
|
||||||
|
|
||||||
if($datequery) {
|
if ($datequery) {
|
||||||
$sql_extra2 .= protect_sprintf(sprintf(" AND `thread`.`created` <= '%s' ", dbesc(datetime_convert(date_default_timezone_get(),'',$datequery))));
|
$sql_extra2 .= protect_sprintf(sprintf(" AND `thread`.`created` <= '%s' ", dbesc(datetime_convert(date_default_timezone_get(),'',$datequery))));
|
||||||
}
|
}
|
||||||
if($datequery2) {
|
if ($datequery2) {
|
||||||
$sql_extra2 .= protect_sprintf(sprintf(" AND `thread`.`created` >= '%s' ", dbesc(datetime_convert(date_default_timezone_get(),'',$datequery2))));
|
$sql_extra2 .= protect_sprintf(sprintf(" AND `thread`.`created` >= '%s' ", dbesc(datetime_convert(date_default_timezone_get(),'',$datequery2))));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -133,10 +133,10 @@ function profile_photo_post(App &$a) {
|
||||||
|
|
||||||
require_once('include/profile_update.php');
|
require_once('include/profile_update.php');
|
||||||
profile_change();
|
profile_change();
|
||||||
}
|
} else {
|
||||||
else
|
|
||||||
notice( t('Unable to process image') . EOL);
|
notice( t('Unable to process image') . EOL);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
goaway(App::get_baseurl() . '/profiles');
|
goaway(App::get_baseurl() . '/profiles');
|
||||||
return; // NOTREACHED
|
return; // NOTREACHED
|
||||||
|
@ -146,11 +146,13 @@ function profile_photo_post(App &$a) {
|
||||||
$filename = basename($_FILES['userfile']['name']);
|
$filename = basename($_FILES['userfile']['name']);
|
||||||
$filesize = intval($_FILES['userfile']['size']);
|
$filesize = intval($_FILES['userfile']['size']);
|
||||||
$filetype = $_FILES['userfile']['type'];
|
$filetype = $_FILES['userfile']['type'];
|
||||||
if ($filetype=="") $filetype=guess_image_type($filename);
|
if ($filetype == "") {
|
||||||
|
$filetype = guess_image_type($filename);
|
||||||
|
}
|
||||||
|
|
||||||
$maximagesize = get_config('system','maximagesize');
|
$maximagesize = get_config('system','maximagesize');
|
||||||
|
|
||||||
if(($maximagesize) && ($filesize > $maximagesize)) {
|
if (($maximagesize) && ($filesize > $maximagesize)) {
|
||||||
notice( sprintf(t('Image exceeds size limit of %s'), formatBytes($maximagesize)) . EOL);
|
notice( sprintf(t('Image exceeds size limit of %s'), formatBytes($maximagesize)) . EOL);
|
||||||
@unlink($src);
|
@unlink($src);
|
||||||
return;
|
return;
|
||||||
|
@ -159,7 +161,7 @@ function profile_photo_post(App &$a) {
|
||||||
$imagedata = @file_get_contents($src);
|
$imagedata = @file_get_contents($src);
|
||||||
$ph = new Photo($imagedata, $filetype);
|
$ph = new Photo($imagedata, $filetype);
|
||||||
|
|
||||||
if(! $ph->is_valid()) {
|
if (! $ph->is_valid()) {
|
||||||
notice( t('Unable to process image.') . EOL );
|
notice( t('Unable to process image.') . EOL );
|
||||||
@unlink($src);
|
@unlink($src);
|
||||||
return;
|
return;
|
||||||
|
@ -168,7 +170,6 @@ function profile_photo_post(App &$a) {
|
||||||
$ph->orient($src);
|
$ph->orient($src);
|
||||||
@unlink($src);
|
@unlink($src);
|
||||||
return profile_photo_crop_ui_head($a, $ph);
|
return profile_photo_crop_ui_head($a, $ph);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -71,8 +71,7 @@ function subthread_content(App &$a) {
|
||||||
|
|
||||||
if ((local_user()) && (local_user() == $owner_uid)) {
|
if ((local_user()) && (local_user() == $owner_uid)) {
|
||||||
$contact = $owner;
|
$contact = $owner;
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
$r = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
|
$r = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
|
||||||
intval($_SESSION['visitor_id']),
|
intval($_SESSION['visitor_id']),
|
||||||
intval($owner_uid)
|
intval($owner_uid)
|
||||||
|
|
|
@ -3,7 +3,6 @@
|
||||||
require_once('include/socgraph.php');
|
require_once('include/socgraph.php');
|
||||||
require_once('include/contact_widgets.php');
|
require_once('include/contact_widgets.php');
|
||||||
|
|
||||||
|
|
||||||
function suggest_init(App &$a) {
|
function suggest_init(App &$a) {
|
||||||
if (! local_user()) {
|
if (! local_user()) {
|
||||||
return;
|
return;
|
||||||
|
|
|
@ -9,6 +9,7 @@ function uexport_init(App &$a){
|
||||||
settings_init($a);
|
settings_init($a);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// @TODO Change space -> tab where wanted
|
||||||
function uexport_content(App &$a){
|
function uexport_content(App &$a){
|
||||||
|
|
||||||
if ($a->argc > 1) {
|
if ($a->argc > 1) {
|
||||||
|
|
|
@ -113,7 +113,7 @@ function videos_post(App &$a) {
|
||||||
if (($a->argc == 2) && x($_POST,'delete') && x($_POST, 'id')) {
|
if (($a->argc == 2) && x($_POST,'delete') && x($_POST, 'id')) {
|
||||||
|
|
||||||
// Check if we should do HTML-based delete confirmation
|
// Check if we should do HTML-based delete confirmation
|
||||||
if(!x($_REQUEST,'confirm')) {
|
if (!x($_REQUEST,'confirm')) {
|
||||||
if (x($_REQUEST,'canceled')) {
|
if (x($_REQUEST,'canceled')) {
|
||||||
goaway(App::get_baseurl() . '/videos/' . $a->data['user']['nickname']);
|
goaway(App::get_baseurl() . '/videos/' . $a->data['user']['nickname']);
|
||||||
}
|
}
|
||||||
|
@ -138,7 +138,6 @@ function videos_post(App &$a) {
|
||||||
|
|
||||||
$video_id = $_POST['id'];
|
$video_id = $_POST['id'];
|
||||||
|
|
||||||
|
|
||||||
$r = q("SELECT `id` FROM `attach` WHERE `uid` = %d AND `id` = '%s' LIMIT 1",
|
$r = q("SELECT `id` FROM `attach` WHERE `uid` = %d AND `id` = '%s' LIMIT 1",
|
||||||
intval(local_user()),
|
intval(local_user()),
|
||||||
dbesc($video_id)
|
dbesc($video_id)
|
||||||
|
@ -409,4 +408,3 @@ function videos_content(App &$a) {
|
||||||
$o .= paginate($a);
|
$o .= paginate($a);
|
||||||
return $o;
|
return $o;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,6 @@
|
||||||
* Theme settings
|
* Theme settings
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
function theme_content(App &$a){
|
function theme_content(App &$a){
|
||||||
if (!local_user()) {
|
if (!local_user()) {
|
||||||
return;
|
return;
|
||||||
|
@ -25,7 +24,6 @@ function theme_post(App &$a){
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
function theme_admin(App &$a){
|
function theme_admin(App &$a){
|
||||||
$colorset = get_config( 'duepuntozero', 'colorset');
|
$colorset = get_config( 'duepuntozero', 'colorset');
|
||||||
$user = false;
|
$user = false;
|
||||||
|
@ -42,13 +40,13 @@ function theme_admin_post(App &$a){
|
||||||
/// @TODO $a is no longer used
|
/// @TODO $a is no longer used
|
||||||
function clean_form(&$a, &$colorset, $user){
|
function clean_form(&$a, &$colorset, $user){
|
||||||
$colorset = array(
|
$colorset = array(
|
||||||
'default'=>t('default'),
|
'default' =>t('default'),
|
||||||
'greenzero'=>t('greenzero'),
|
'greenzero' =>t('greenzero'),
|
||||||
'purplezero'=>t('purplezero'),
|
'purplezero' =>t('purplezero'),
|
||||||
'easterbunny'=>t('easterbunny'),
|
'easterbunny' =>t('easterbunny'),
|
||||||
'darkzero'=>t('darkzero'),
|
'darkzero' =>t('darkzero'),
|
||||||
'comix'=>t('comix'),
|
'comix' =>t('comix'),
|
||||||
'slackr'=>t('slackr'),
|
'slackr' =>t('slackr'),
|
||||||
);
|
);
|
||||||
|
|
||||||
if ($user) {
|
if ($user) {
|
||||||
|
@ -62,7 +60,7 @@ function clean_form(&$a, &$colorset, $user){
|
||||||
$o .= replace_macros($t, array(
|
$o .= replace_macros($t, array(
|
||||||
'$submit' => t('Submit'),
|
'$submit' => t('Submit'),
|
||||||
'$baseurl' => App::get_baseurl(),
|
'$baseurl' => App::get_baseurl(),
|
||||||
'$title'=> t("Theme settings"),
|
'$title' => t("Theme settings"),
|
||||||
'$colorset' => array('duepuntozero_colorset', t('Variations'), $color, '', $colorset),
|
'$colorset' => array('duepuntozero_colorset', t('Variations'), $color, '', $colorset),
|
||||||
));
|
));
|
||||||
|
|
||||||
|
|
|
@ -29,7 +29,6 @@ function theme_post(App &$a){
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
function theme_admin(App &$a){
|
function theme_admin(App &$a){
|
||||||
$align = get_config('quattro', 'align' );
|
$align = get_config('quattro', 'align' );
|
||||||
$color = get_config('quattro', 'color' );
|
$color = get_config('quattro', 'color' );
|
||||||
|
|
Loading…
Reference in a new issue