This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "FusionForge".
The branch, master has been updated
via 61d0583b268d3e1a7265ec767f63568562ac1c5a (commit)
from 0f054f52941c27f12c21d32b883271bcb92afdaf (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
https://scm.fusionforge.org/anonscm/gitweb/?p=fusionforge/fusionforge.git;a=commitdiff;h=61d0583b268d3e1a7265ec767f63568562ac1c5a
commit 61d0583b268d3e1a7265ec767f63568562ac1c5a
Author: Marc-Etienne Vargenau <[email protected]>
Date: Thu Aug 3 16:33:09 2017 +0200
Remove unused param
diff --git a/src/www/include/Layout.class.php b/src/www/include/Layout.class.php
index 850f004..48d167f 100644
--- a/src/www/include/Layout.class.php
+++ b/src/www/include/Layout.class.php
@@ -407,7 +407,7 @@ abstract class Layout extends FFError {
abstract function bodyHeader($params);
- abstract function footer($params = array());
+ abstract function footer();
function footerEnd() { ?>
diff --git a/src/www/themes/funky/Theme.class.php
b/src/www/themes/funky/Theme.class.php
index 452d0e0..3d69324 100644
--- a/src/www/themes/funky/Theme.class.php
+++ b/src/www/themes/funky/Theme.class.php
@@ -159,12 +159,12 @@ class Theme_Funky extends Layout {
}
}
- function bodyFooter($params) {
+ function bodyFooter() {
echo html_ac(html_ap() -1).'<!-- id="maindiv" -->' . "\n";
}
- function footer($params = array()) {
- $this->bodyFooter($params);
+ function footer() {
+ $this->bodyFooter();
echo html_ao('footer', array('role' => 'contentinfo'));
echo $this->navigation->getPoweredBy();
echo $this->navigation->getShowSource();
-----------------------------------------------------------------------
Summary of changes:
src/www/include/Layout.class.php | 2 +-
src/www/themes/funky/Theme.class.php | 6 +++---
2 files changed, 4 insertions(+), 4 deletions(-)
hooks/post-receive
--
FusionForge
_______________________________________________
Fusionforge-commits mailing list
[email protected]
http://lists.fusionforge.org/cgi-bin/mailman/listinfo/fusionforge-commits