This website requires JavaScript.
Odkrywaj
Pomoc
Zarejestruj się
Zaloguj się
mirror
/
friendica
kopia lustrzana
https://github.com/friendica/friendica
Obserwuj
1
Polub
0
Forkuj
You've already forked friendica
1
Kod
Zgłoszenia
Projekty
Wydania
Wiki
Aktywność
d6cf791677
friendica
/
mod
/
session.php
7 wiersze
86 B
PHP
Czysty
Zwykły widok
Historia
Unescape
Escape
ff account manager
2010-11-11 10:49:28 +00:00
<
?
php
Updated modules to allow for partial overrides without errors Only define functions if they have not been defined before, e.g. in themes. This makes it possible to override parts of a module and still use the other functions.
2016-02-05 20:52:39 +00:00
if
(
!
function_exists
(
'session_content'
))
{
ff account manager
2010-11-11 10:49:28 +00:00
function
session_content
(
&
$a
)
{
Updated modules to allow for partial overrides without errors Only define functions if they have not been defined before, e.g. in themes. This makes it possible to override parts of a module and still use the other functions.
2016-02-05 20:52:39 +00:00
}
ff account manager
2010-11-11 10:49:28 +00:00
}