aboutsummaryrefslogtreecommitdiffstats
path: root/mod/sources.php
diff options
context:
space:
mode:
authormarijus <mario@localhost.localdomain>2013-12-16 12:51:35 +0100
committermarijus <mario@localhost.localdomain>2013-12-16 12:51:35 +0100
commit5512d6aa1df61e0cdab31a2758d3a865ddfbc280 (patch)
tree1f2d763c495ad5192456d54036eb3dcc8fafb595 /mod/sources.php
parentc3c7a068332ae08aea5eeb8eaf820e34c9cf210b (diff)
parenta7a775a718ef92c9bd623849baab1e386071d70b (diff)
downloadvolse-hubzilla-5512d6aa1df61e0cdab31a2758d3a865ddfbc280.tar.gz
volse-hubzilla-5512d6aa1df61e0cdab31a2758d3a865ddfbc280.tar.bz2
volse-hubzilla-5512d6aa1df61e0cdab31a2758d3a865ddfbc280.zip
Merge branch 'master' of https://github.com/friendica/red
Diffstat (limited to 'mod/sources.php')
-rw-r--r--mod/sources.php21
1 files changed, 21 insertions, 0 deletions
diff --git a/mod/sources.php b/mod/sources.php
index 125184d47..87bab60df 100644
--- a/mod/sources.php
+++ b/mod/sources.php
@@ -9,11 +9,25 @@ function sources_post(&$a) {
$source = intval($_REQUEST['source']);
$xchan = $_REQUEST['xchan'];
+ $abook = intval($_REQUEST['abook']);
$words = $_REQUEST['words'];
$frequency = $_REQUEST['frequency'];
$channel = $a->get_channel();
+ if($abook) {
+ $r = q("select abook_xchan from abook where abook_id = %d and abook_channel = %d limit 1",
+ intval($abook),
+ intval(local_user())
+ );
+ if($r)
+ $xchan = $r[0]['abook_xchan'];
+ }
+
+ if(! $xchan) {
+ notice ( t('Failed to create source. No channel selected.') . EOL);
+ return;
+ }
if(! $source) {
$r = q("insert into source ( src_channel_id, src_channel_xchan, src_xchan, src_patt )
@@ -92,6 +106,12 @@ function sources_content(&$a) {
intval(argv(1)),
intval(local_user())
);
+ if($r) {
+ $x = q("select abook_id from abook where abook_xchan = '%s' and abook_channel = %d limit 1",
+ dbesc($r[0]['src_xchan']),
+ intval(local_user())
+ );
+ }
if(! $r) {
notice( t('Source not found.') . EOL);
return '';
@@ -106,6 +126,7 @@ function sources_content(&$a) {
'$desc' => t('Import all or selected content from the following channel into this channel and distribute it according to your channel settings.'),
'$words' => array( 'words', t('Only import content with these words (one per line)'),$r[0]['src_patt'],t('Leave blank to import all public content')),
'$xchan' => $r[0]['src_xchan'],
+ '$abook' => $x[0]['abook_id'],
'$name' => array( 'name', t('Channel Name'), $r[0]['xchan_name'], ''),
'$submit' => t('Submit')
));