mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2025-07-12 11:28:49 +00:00
Default param
use that default parameter!!!
This commit is contained in:
parent
cdc69179fa
commit
e1bb463ba9
4 changed files with 37 additions and 48 deletions
|
@ -50,9 +50,7 @@ function fromapp_settings(&$a,&$s) {
|
|||
|
||||
/* Get the current state of our config variable */
|
||||
|
||||
$fromapp = PConfig::get(local_user(),'fromapp','app');
|
||||
if(is_null($fromapp))
|
||||
$fromapp = '';
|
||||
$fromapp = PConfig::get(local_user(),'fromapp', 'app', '');
|
||||
|
||||
$force = intval(PConfig::get(local_user(),'fromapp','force'));
|
||||
|
||||
|
@ -84,29 +82,29 @@ function fromapp_settings(&$a,&$s) {
|
|||
|
||||
}
|
||||
|
||||
function fromapp_post_hook(&$a,&$item)
|
||||
function fromapp_post_hook(&$a, &$item)
|
||||
{
|
||||
if(! local_user()) {
|
||||
if (! local_user()) {
|
||||
return;
|
||||
}
|
||||
|
||||
if(local_user() != $item['uid']) {
|
||||
if (local_user() != $item['uid']) {
|
||||
return;
|
||||
}
|
||||
|
||||
$app = PConfig::get(local_user(), 'fromapp', 'app');
|
||||
$force = intval(PConfig::get(local_user(), 'fromapp','force'));
|
||||
$app = PConfig::get(local_user(), 'fromapp', 'app');
|
||||
$force = intval(PConfig::get(local_user(), 'fromapp', 'force'));
|
||||
|
||||
if(is_null($app) || (! strlen($app))) {
|
||||
if (is_null($app) || (! strlen($app))) {
|
||||
return;
|
||||
}
|
||||
|
||||
if(strlen(trim($item['app'])) && (! $force)) {
|
||||
if (strlen(trim($item['app'])) && (! $force)) {
|
||||
return;
|
||||
}
|
||||
|
||||
$apps = explode(',',$app);
|
||||
$item['app'] = trim($apps[mt_rand(0,count($apps)-1)]);
|
||||
$apps = explode(',', $app);
|
||||
$item['app'] = trim($apps[mt_rand(0, count($apps)-1)]);
|
||||
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue