diff options
author | Simon L'nu <simon.lnu@gmail.com> | 2012-04-04 02:14:26 -0400 |
---|---|---|
committer | Simon L'nu <simon.lnu@gmail.com> | 2012-04-04 02:14:26 -0400 |
commit | 2871e28df702f32fc780a84642f101931907d458 (patch) | |
tree | 3d1e6ce8c5f044467d95844328ac15a4c6e79d0a /include/delivery.php | |
parent | 06942b36549668eb067650831f286d96aab14a40 (diff) | |
parent | 8e928d101b628c5f562cee840882892f05a1b838 (diff) | |
download | volse-hubzilla-2871e28df702f32fc780a84642f101931907d458.tar.gz volse-hubzilla-2871e28df702f32fc780a84642f101931907d458.tar.bz2 volse-hubzilla-2871e28df702f32fc780a84642f101931907d458.zip |
Merge branch 'master', remote-tracking branch 'remotes/upstream/master'
* remotes/upstream/master:
display settings hooks
re-opened bug #363
this is better
include contact_widgets for categories_widget when doing updates
remove loozah themes which fell too far behind to recover
smal fix
german translation for right_aside
make right_aside translatable and provide german translation... and some css-fixes
suppress duplicates in search
make contact ssl_policy change a function since it is used in a few places
more ssl policy fixes and prevent delivery to soapbox when using local delivery
don't change ssl settings on local photos for remote contact
* master:
Diffstat (limited to 'include/delivery.php')
-rwxr-xr-x | include/delivery.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/delivery.php b/include/delivery.php index 532dcd699..794b8f27a 100755 --- a/include/delivery.php +++ b/include/delivery.php @@ -321,6 +321,14 @@ function delivery_run($argv, $argc){ $x[0]['writable'] = 1; } + $ssl_policy = get_config('system','ssl_policy'); + fix_contact_ssl_policy($x[0],$ssl_policy); + + // If we are setup as a soapbox we aren't accepting input from this person + + if($x[0]['page-flags'] == PAGE_SOAPBOX) + break; + require_once('library/simplepie/simplepie.inc'); logger('mod-delivery: local delivery'); local_delivery($x[0],$atom); |