diff options
author | friendica <info@friendica.com> | 2014-01-31 20:02:59 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-01-31 20:02:59 -0800 |
commit | bd691300a77fbe511641eb5f707980cc1209dac7 (patch) | |
tree | f24f3c6966055e488f1272e1667b14a399970ea8 /mod | |
parent | 902c9b158528b03e6e31f8b7f16fa4a5b16f62cd (diff) | |
download | volse-hubzilla-bd691300a77fbe511641eb5f707980cc1209dac7.tar.gz volse-hubzilla-bd691300a77fbe511641eb5f707980cc1209dac7.tar.bz2 volse-hubzilla-bd691300a77fbe511641eb5f707980cc1209dac7.zip |
provide some interesting new options to channel sources
Diffstat (limited to 'mod')
-rw-r--r-- | mod/sources.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/mod/sources.php b/mod/sources.php index 87bab60df..f4b36508f 100644 --- a/mod/sources.php +++ b/mod/sources.php @@ -12,9 +12,13 @@ function sources_post(&$a) { $abook = intval($_REQUEST['abook']); $words = $_REQUEST['words']; $frequency = $_REQUEST['frequency']; + $name = $_REQUEST['name']; $channel = $a->get_channel(); + if($name == '*') + $xchan = '*'; + if($abook) { $r = q("select abook_xchan from abook where abook_id = %d and abook_channel = %d limit 1", intval($abook), @@ -74,6 +78,9 @@ function sources_content(&$a) { ); if($r) { for($x = 0; $x < count($r); $x ++) { + if($r[$x]['src_xchan'] == '*') { + $r[$x]['xchan_name'] = t('*'); + } $r[$x]['src_patt'] = htmlspecialchars($r[$x]['src_patt'], ENT_COMPAT,'UTF-8'); } } |