1
0
Fork 0

Merge remote-tracking branch 'friendica/develop' into issue/#3062

# Conflicts:
#	view/theme/duepuntozero/theme.php
#	view/theme/smoothly/theme.php
This commit is contained in:
Hypolite Petovan 2017-01-12 09:19:59 +11:00
commit b61479ba6e
166 changed files with 835 additions and 789 deletions

View file

@ -5,7 +5,7 @@
function theme_content(App &$a){
function theme_content(App $a) {
if (!local_user()) {
return;
}
@ -35,7 +35,7 @@ function theme_content(App &$a){
$show_services, $show_friends, $show_lastusers);
}
function theme_post(App &$a){
function theme_post(App $a) {
if (! local_user()) {
return;
}
@ -52,7 +52,7 @@ function theme_post(App &$a){
}
function theme_admin(App &$a){
function theme_admin(App $a) {
if (!function_exists('get_vier_config'))
return;
@ -81,7 +81,7 @@ function theme_admin(App &$a){
return $o;
}
function theme_admin_post(App &$a){
function theme_admin_post(App $a) {
if (isset($_POST['vier-settings-submit'])){
set_config('vier', 'style', $_POST['vier_style']);
set_config('vier', 'show_pages', $_POST['vier_show_pages']);
@ -95,7 +95,7 @@ function theme_admin_post(App &$a){
}
/// @TODO $a is no longer used
function vier_form(&$a, $style, $show_pages, $show_profiles, $show_helpers, $show_services, $show_friends, $show_lastusers){
function vier_form(App $a, $style, $show_pages, $show_profiles, $show_helpers, $show_services, $show_friends, $show_lastusers) {
$styles = array(
"plus"=>"Plus",
"breathe"=>"Breathe",

View file

@ -13,7 +13,7 @@ require_once("include/plugin.php");
require_once("include/socgraph.php");
require_once("mod/proxy.php");
function vier_init(App &$a) {
function vier_init(App $a) {
$a->theme_events_in_profile = false;