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

« back to all changes in this revision

Viewing changes to htdocs/js/dnChooserPopup.js

  • 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:
1
 
function dnChooserPopup(form_element,rdn)
 
1
function dnChooserPopup(form,element,rdn)
2
2
{
3
3
        mywindow=open('entry_chooser.php','myname','resizable=no,width=600,height=370,scrollbars=1');
4
 
        mywindow.location.href = 'entry_chooser.php?form_element=' + form_element + '&rdn=' + rdn;
 
4
        mywindow.location.href = 'entry_chooser.php?form=' + form + '&element=' + element + '&rdn=' + rdn;
5
5
        if (mywindow.opener == null) mywindow.opener = self;
6
6
}