Overview
Comment:Problème de passage en literal : $www_url qui n'était pas interprété
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 222fa399fbb148e67b98f2c4591fb0a747bad38c
User & Date: bohwaz on 2012-04-03 02:31:04
Other Links: manifest | tags
Context
2012-05-04
05:26
Fix [e63327a3cb] liens wiki check-in: 43d4038649 user: bohwaz tags: trunk
2012-04-03
02:31
Problème de passage en literal : $www_url qui n'était pas interprété check-in: 222fa399fb user: bohwaz tags: trunk
01:27
Ne pas tenir compte de la casse dans le tri des listes de membres check-in: 1167ee9930 user: bohwaz tags: trunk
Changes

Modified templates/admin/_foot.tpl from [3bf65433df] to [abb2906114].

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
</div>

<script type="text/javascript" defer="defer">
{literal}
(function () {
    var keep_session_url = "{$www_url}admin/login.php?keepSessionAlive&amp;";

    function refreshSession()
    {
        var _RIMAGE = new Image(1,1);
        _RIMAGE.src = keep_session_url + Math.round(Math.random()*1000000000);
        window.setTimeout("refreshSession()", 15 * 60 * 1000);
    }
    window.setTimeout(refreshSession, 20 * 60 * 1000);
} ());
{/literal}
</script>

</body>
</html>





|





<

|






1
2
3
4
5
6
7
8
9
10
11

12
13
14
15
16
17
18
19
</div>

<script type="text/javascript" defer="defer">
{literal}
(function () {
    var keep_session_url = "{/literal}{$www_url}{literal}admin/login.php?keepSessionAlive&amp;";

    function refreshSession()
    {
        var _RIMAGE = new Image(1,1);
        _RIMAGE.src = keep_session_url + Math.round(Math.random()*1000000000);

    }
    window.setInterval(refreshSession, 10 * 60 * 1000);
} ());
{/literal}
</script>

</body>
</html>