diff options
| -rw-r--r-- | mod/thewire/languages/en.php | 1 | ||||
| -rw-r--r-- | mod/thewire/views/default/thewire/profile_status.php | 49 | 
2 files changed, 28 insertions, 22 deletions
diff --git a/mod/thewire/languages/en.php b/mod/thewire/languages/en.php index 0f1055273..7a6853dc4 100644 --- a/mod/thewire/languages/en.php +++ b/mod/thewire/languages/en.php @@ -28,6 +28,7 @@  			'thewire:newpost' => 'New wire post',  			'thewire:addpost' => 'Post to the wire',  			'thewire:by' => "Wire post by %s", +			'thewire:update' => 'update',          /** diff --git a/mod/thewire/views/default/thewire/profile_status.php b/mod/thewire/views/default/thewire/profile_status.php index 24f6c447b..a313b65ef 100644 --- a/mod/thewire/views/default/thewire/profile_status.php +++ b/mod/thewire/views/default/thewire/profile_status.php @@ -1,28 +1,33 @@  <?php -	/** -	 * Latest wire post on profile activity page -	 */ -	  -	$owner = $vars['entity']->guid; -	$url_to_wire = $vars['url'] . "pg/thewire/" . $vars['entity']->username; +/** + * Latest wire post on profile activity page + */ +  +$owner = $vars['entity']->guid; +$url_to_wire = $vars['url'] . "pg/thewire/" . $vars['entity']->username; -	//grab the users latest from the wire -	$latest_wire = elgg_get_entities(array('types' => 'object', 'subtypes' => 'thewire', 'owner_guid' => $owner, 'limit' => 1));  +//grab the user's latest from the wire +$params = array( +	'types' => 'object', +	'subtypes' => 'thewire', +	'owner_guid' => $owner, +	'limit' => 1, +); +$latest_wire = elgg_get_entities($params); -	if($latest_wire){ -		foreach($latest_wire as $lw){ -			$content = $lw->description; -			$time = "<p class='entity_subtext'> (" . elgg_view_friendly_time($lw->time_created) . ")</p>"; -		} +if ($latest_wire) { +	foreach ($latest_wire as $lw) { +		$content = $lw->description; +		$time = "<p class='entity_subtext'> (" . elgg_view_friendly_time($lw->time_created) . ")</p>";  	} -	 -	if($latest_wire){ -		echo "<div class='wire_post'><div class='wire_post_contents clearfloat radius8'>"; -		echo $content; -		if($owner == $_SESSION['user']->guid) -			echo " <a class='action_button update small' href=\"{$url_to_wire}\">update</a>"; -		echo $time; -		echo "</div></div>"; + +	echo "<div class='wire_post'><div class='wire_post_contents clearfloat radius8'>"; +	echo $content; +	if ($owner == get_loggedin_userid()) { +		$text = elgg_echo('thewire:update'); +		echo "<a class='action_button update small' href=\"{$url_to_wire}\">$text</a>";  	} -?>
\ No newline at end of file +	echo $time; +	echo "</div></div>"; +}  | 
