diff options
author | Antonio Gallo <tonicucoz@gmail.com> | 2012-06-03 20:29:25 +0000 |
---|---|---|
committer | Antonio Gallo <tonicucoz@gmail.com> | 2012-06-03 20:29:25 +0000 |
commit | 3c2c5a06170ad879a11c56b724512d24d32bff42 (patch) | |
tree | 542f6ab6cede5e01bfeadbf3f37b721ad7e7a1a5 /h-source/Application/Views/Desktop/Rss | |
parent | 1f7f75d7eae32bfb1174140b7d405b9c822f60f2 (diff) |
added improved RSS format for statusnet
Diffstat (limited to 'h-source/Application/Views/Desktop/Rss')
-rw-r--r-- | h-source/Application/Views/Desktop/Rss/modifications.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/h-source/Application/Views/Desktop/Rss/modifications.php b/h-source/Application/Views/Desktop/Rss/modifications.php index 0db9158..addc483 100644 --- a/h-source/Application/Views/Desktop/Rss/modifications.php +++ b/h-source/Application/Views/Desktop/Rss/modifications.php @@ -15,7 +15,7 @@ $translations = array('insert'=>'inserted','update'=>'updated'); <?php foreach ($table as $row) { ?> <item> <title><?php echo $row['hardware']['model'];?></title> - <description><![CDATA[<?php echo gtext('the model')." ".$row['hardware']['model']." ".gtext('has been '.$translations[$row['history']['action']].' by')." ".$u->getUser($row['history']['created_by']);?>]]></description> + <description><![CDATA[<?php echo "$statusnetText ".gtext('the model')." ".$row['hardware']['model']." ".gtext('has been '.$translations[$row['history']['action']].' by')." ".$u->getUser($row['history']['created_by']);?>]]></description> <link><?php echo $this->baseUrl."/".Hardware::$typeToController[$row['hardware']['type']]."/view/$lang/".$row['hardware']['id_hard']."/".encodeUrl($row['hardware']['model']);?></link> <pubDate><?php echo pubDateFormat($row['history']['creation_date']);?></pubDate> </item> |