added hearts
This commit is contained in:
parent
a48efe0bc0
commit
69fe1efa98
3 changed files with 14 additions and 9 deletions
|
@ -6,6 +6,8 @@ require_once('include/auth.php');
|
||||||
|
|
||||||
function dfrn_poll_init(&$a) {
|
function dfrn_poll_init(&$a) {
|
||||||
|
|
||||||
|
$dfrn_id = '';
|
||||||
|
|
||||||
if(x($_GET,'dfrn_id'))
|
if(x($_GET,'dfrn_id'))
|
||||||
$dfrn_id = $a->config['dfrn_poll_dfrn_id'] = $_GET['dfrn_id'];
|
$dfrn_id = $a->config['dfrn_poll_dfrn_id'] = $_GET['dfrn_id'];
|
||||||
if(x($_GET,'type'))
|
if(x($_GET,'type'))
|
||||||
|
@ -13,13 +15,7 @@ function dfrn_poll_init(&$a) {
|
||||||
if(x($_GET,'last_update'))
|
if(x($_GET,'last_update'))
|
||||||
$last_update = $a->config['dfrn_poll_last_update'] = $_GET['last_update'];
|
$last_update = $a->config['dfrn_poll_last_update'] = $_GET['last_update'];
|
||||||
|
|
||||||
|
if(($dfrn_id == '') && ($a->argc > 1)) {
|
||||||
|
|
||||||
if(! x($dfrn_id))
|
|
||||||
return;
|
|
||||||
|
|
||||||
|
|
||||||
if(($dfrn_id == '*') && ($a->argc > 1)) {
|
|
||||||
$o = get_feed_for($a,'*', $a->argv[1],$last_update);
|
$o = get_feed_for($a,'*', $a->argv[1],$last_update);
|
||||||
echo $o;
|
echo $o;
|
||||||
killme();
|
killme();
|
||||||
|
@ -140,6 +136,10 @@ function dfrn_poll_post(&$a) {
|
||||||
|
|
||||||
function dfrn_poll_content(&$a) {
|
function dfrn_poll_content(&$a) {
|
||||||
|
|
||||||
|
|
||||||
|
$dfrn_id = '';
|
||||||
|
$type = 'data';
|
||||||
|
|
||||||
if(x($_GET,'dfrn_id'))
|
if(x($_GET,'dfrn_id'))
|
||||||
$dfrn_id = $a->config['dfrn_poll_dfrn_id'] = $_GET['dfrn_id'];
|
$dfrn_id = $a->config['dfrn_poll_dfrn_id'] = $_GET['dfrn_id'];
|
||||||
if(x($_GET,'type'))
|
if(x($_GET,'type'))
|
||||||
|
@ -148,7 +148,7 @@ function dfrn_poll_content(&$a) {
|
||||||
$last_update = $a->config['dfrn_poll_last_update'] = $_GET['last_update'];
|
$last_update = $a->config['dfrn_poll_last_update'] = $_GET['last_update'];
|
||||||
|
|
||||||
|
|
||||||
if($dfrn_id != '*') {
|
if($dfrn_id != '') {
|
||||||
// initial communication from external contact
|
// initial communication from external contact
|
||||||
$hash = random_string();
|
$hash = random_string();
|
||||||
|
|
||||||
|
|
|
@ -53,7 +53,7 @@
|
||||||
</div>
|
</div>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
<?php if(strlen($profile['marital'])) { ?>
|
<?php if(strlen($profile['marital'])) { ?>
|
||||||
<div class="marital"><span class="marital-label">Status: </span><span class="marital-text"><?php echo $profile['marital']; ?></span></div>
|
<div class="marital"><span class="marital-label"><span class="heart">♥</span> Status: </span><span class="marital-text"><?php echo $profile['marital']; ?></span></div>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
<?php if(strlen($profile['url'])) { ?>
|
<?php if(strlen($profile['url'])) { ?>
|
||||||
<div class="homepage"><span class="homepage-label">Status: </span><span class="homepage-url"><?php echo $profile['homepage']; ?></span></div>
|
<div class="homepage"><span class="homepage-label">Status: </span><span class="homepage-url"><?php echo $profile['homepage']; ?></span></div>
|
||||||
|
|
|
@ -39,6 +39,11 @@ img.photo {
|
||||||
margin-left: 280px;
|
margin-left: 280px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.heart {
|
||||||
|
color: #FF0000;
|
||||||
|
font-size: 120%;
|
||||||
|
}
|
||||||
|
|
||||||
aside {
|
aside {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
left: 0px;
|
left: 0px;
|
||||||
|
|
Loading…
Reference in a new issue