commit
5a171c0afd
|
@ -1821,10 +1821,10 @@ class Diaspora
|
||||||
"to_name" => $importer["username"],
|
"to_name" => $importer["username"],
|
||||||
"to_email" => $importer["email"],
|
"to_email" => $importer["email"],
|
||||||
"uid" =>$importer["uid"],
|
"uid" =>$importer["uid"],
|
||||||
"item" => ["subject" => $subject, "body" => $body],
|
"item" => ["id" => $conversation["id"], "title" => $subject, "subject" => $subject, "body" => $body],
|
||||||
"source_name" => $person["name"],
|
"source_name" => $person["name"],
|
||||||
"source_link" => $person["url"],
|
"source_link" => $person["url"],
|
||||||
"source_photo" => $person["thumb"],
|
"source_photo" => $person["photo"],
|
||||||
"verb" => ACTIVITY_POST,
|
"verb" => ACTIVITY_POST,
|
||||||
"otype" => "mail"]
|
"otype" => "mail"]
|
||||||
);
|
);
|
||||||
|
|
|
@ -44,7 +44,7 @@ if (!isset($minimal)) {
|
||||||
$uid = Profile::getThemeUid();
|
$uid = Profile::getThemeUid();
|
||||||
}
|
}
|
||||||
$scheme = PConfig::get($uid, 'frio', 'scheme', PConfig::get($uid, 'frio', 'schema'));
|
$scheme = PConfig::get($uid, 'frio', 'scheme', PConfig::get($uid, 'frio', 'schema'));
|
||||||
if (($scheme) && ($scheme != '---')) {
|
if ($scheme && ($scheme != '---')) {
|
||||||
if (file_exists('view/theme/frio/scheme/' . $scheme . '.php')) {
|
if (file_exists('view/theme/frio/scheme/' . $scheme . '.php')) {
|
||||||
$schemefile = 'view/theme/frio/scheme/' . $scheme . '.php';
|
$schemefile = 'view/theme/frio/scheme/' . $scheme . '.php';
|
||||||
require_once $schemefile;
|
require_once $schemefile;
|
||||||
|
@ -52,7 +52,7 @@ if (!isset($minimal)) {
|
||||||
} else {
|
} else {
|
||||||
$nav_bg = PConfig::get($uid, 'frio', 'nav_bg');
|
$nav_bg = PConfig::get($uid, 'frio', 'nav_bg');
|
||||||
}
|
}
|
||||||
if (!$nav_bg) {
|
if (empty($nav_bg)) {
|
||||||
$nav_bg = "#708fa0";
|
$nav_bg = "#708fa0";
|
||||||
}
|
}
|
||||||
echo '
|
echo '
|
||||||
|
|
Loading…
Reference in a new issue