coverup and ignore the illegal string offset message that some sites have been reporting. This does not fix it. A fix would be to examine the data that has been received and find out why it is mangled and trace this back to where it was mangled.
This commit is contained in:
parent
b7d3eb1605
commit
a5989b0f31
@ -1110,7 +1110,9 @@ function zot_import($arr, $sender_url) {
|
||||
logger('specific recipients');
|
||||
$recip_arr = array();
|
||||
foreach($i['notify']['recipients'] as $recip) {
|
||||
$recip_arr[] = make_xchan_hash($recip['guid'],$recip['guid_sig']);
|
||||
if(is_array($recip)) {
|
||||
$recip_arr[] = make_xchan_hash($recip['guid'],$recip['guid_sig']);
|
||||
}
|
||||
}
|
||||
stringify_array_elms($recip_arr);
|
||||
$recips = implode(',',$recip_arr);
|
||||
|
@ -729,6 +729,6 @@ function what_next() {
|
||||
."<p>".t('IMPORTANT: You will need to [manually] setup a scheduled task for the poller.')
|
||||
.t('Please see the file "install/INSTALL.txt".')
|
||||
."</p><p>"
|
||||
.t("Go to your new Red node <a href='$baseurl/register'>registration page</a> and register as new user. Remember to use the same email you have entered as administrator email. This will allow you to enter the site admin panel.")
|
||||
.t("Go to your new hub <a href='$baseurl/register'>registration page</a> and register as new member. Remember to use the same email you have entered as administrator email. This will allow you to enter the site admin panel.")
|
||||
."</p>";
|
||||
}
|
||||
|
@ -1 +1 @@
|
||||
2015-07-11.1090
|
||||
2015-07-14.1093
|
||||
|
Reference in New Issue
Block a user