Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
fusiondirectory
fusiondirectory-plugins
Commits
0f4f2cdd
Commit
0f4f2cdd
authored
Aug 16, 2016
by
Côme Chilliet
Browse files
Fixes #5068 Removed PHP4 styled constructor in FAI plugin
parent
dc6c8c0e
Changes
1
Hide whitespace changes
Inline
Side-by-side
fai/admin/fai/packageSelect/class_filterFAIcustoms.inc
View file @
0f4f2cdd
...
...
@@ -18,16 +18,16 @@
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
*/
class
filterFAIcustoms
extends
filter
{
class
filterFAIcustoms
extends
filter
{
var
$customs
=
array
();
function
filterFAIcustoms
(
$filename
)
function
__construct
(
$filename
)
{
$release
=
session
::
get
(
'packageSelect_Release'
);
$this
->
customs
=
serviceRepository
::
getCustomReleases
(
$release
);
parent
::
filter
(
$filename
);
parent
::
__construct
(
$filename
);
}
function
load
(
$filename
)
...
...
@@ -57,6 +57,6 @@ class filterFAIcustoms extends filter {
}
$smarty
->
assign
(
'customs'
,
$customs
);
return
filter
::
render
();
return
parent
::
render
();
}
}
Côme Chilliet
@cchilliet
mentioned in issue
#1436 (closed)
·
Sep 02, 2017
mentioned in issue
#1436 (closed)
mentioned in issue #1436
Toggle commit list
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment