~ubuntu-branches/debian/stretch/phpldapadmin/stretch

« back to all changes in this revision

Viewing changes to htdocs/welcome.php

  • Committer: Package Import Robot
  • Author(s): Fabio Tranchitella, Marcus Osdoba, Fabio Tranchitella
  • Date: 2012-02-08 08:52:18 UTC
  • mfrom: (1.2.5)
  • Revision ID: package-import@ubuntu.com-20120208085218-9vopuqvdwo6ks4xs
Tags: 1.2.2-1
[ Marcus Osdoba ]
* Non-maintainer upload.
* New upstream release (Closes: #605061,#499862,#505578,#517802,#642445)
* Not reproducible in this version (Closes: #502412,#505575,#521033,#527070)
* SF Bug #3477910 - XSS vulnerability in query
* Remove dependency to unknown package libapache-mod-php5
* Fix lintian warnings in templates.
* Remove apt-dependancy to apache2 (Closes: #622657)
* Use | instead of # for sed used in config/postinst (Closes: #616305)
* Add browser hint in package description (Closes: #527070)
* Fix pending l10n issues. Debconf translations:
  - Danish (Joe Hansen).  Closes: #638680
  - Polish (Michał Kułach).  Closes: #657458
* Bump standards to 3.9.2
* Use quilt as source format

[ Fabio Tranchitella ]
* Uploaded work by Marcus Osdoba.

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
 
12
12
require './common.php';
13
13
 
14
 
echo '<center>';
 
14
echo '<div style="text-align: center;">';
15
15
echo '<br /><br />';
16
16
printf('<img src="%s/logo.png" title="%s" alt="%s" />',IMGDIR,_('phpLDAPadmin logo'),_('phpLDAPadmin logo'));
17
17
echo '<br /><br />';
19
19
echo '<br /><br />';
20
20
 
21
21
if ($_SESSION[APPCONFIG]->isCommandAvailable('cmd','oslinks')) {
22
 
        printf('<a href="%s" target="_blank">%s</a>',get_href('credits'),_('Credits'));
23
 
        printf(' | <a href="%s" target="_blank">%s</a>',get_href('documentation'),_('Documentation'));
24
 
        printf(' | <a href="%s" target="_blank">%s</a>',get_href('donate'),_('Donate'));
 
22
        printf('<a href="%s" onclick="target=\'_blank\';">%s</a>',get_href('credits'),_('Credits'));
 
23
        printf(' | <a href="%s" onclick="target=\'_blank\';">%s</a>',get_href('documentation'),_('Documentation'));
 
24
        printf(' | <a href="%s" onclick="target=\'_blank\';">%s</a>',get_href('donate'),_('Donate'));
25
25
        echo '<br /><br />';
26
26
}
27
27
 
28
 
echo '</center>';
 
28
echo '</div>';
29
29
?>