~ubuntu-branches/ubuntu/oneiric/phpldapadmin/oneiric-security

« back to all changes in this revision

Viewing changes to htdocs/rename_form.php

  • Committer: Bazaar Package Importer
  • Author(s): Cody A.W. Somerville
  • Date: 2008-07-12 05:45:57 UTC
  • mfrom: (1.1.7 upstream) (3.1.2 lenny)
  • Revision ID: james.westby@ubuntu.com-20080712054557-5u4hizg2b1u4f1f3
Tags: 1.1.0.5-3ubuntu1
* Merge from debian unstable. (closes lp: #192034)
  - dropped superflous removal of unused dpatch system and e-mailed 
     Debian maintainer to please make the change in Debian.
  - install groupOfNames template to templates/creation/ instead of
     templates/additional-templates/ so that users will be able to use it.
* Remaining Ubuntu changes:
  - debian/additional-templates/*:
    . added groupOfNames.xml (a commonly used object, see lp: #72779)
  - debian/rules:
    . added call to dh_install to install debian/additional-templates/* 
  - debian/control: Maintainer fields updated.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
<?php
2
 
// $Header: /cvsroot/phpldapadmin/phpldapadmin/htdocs/rename_form.php,v 1.11 2007/12/15 07:50:30 wurley Exp $
 
2
// $Header: /cvsroot/phpldapadmin/phpldapadmin/htdocs/rename_form.php,v 1.11.2.1 2008/01/13 05:37:01 wurley Exp $
3
3
 
4
4
/**
5
5
 * Displays a form for renaming an LDAP entry.
28
28
printf('<h3 class="subtitle">%s: <b>%s</b> &nbsp;&nbsp;&nbsp; %s: <b>%s</b></h3>',
29
29
        _('Server'),$ldapserver->name,_('Distinguished Name'),htmlspecialchars($dn));
30
30
 
31
 
echo '<br /><center><form action="cmd.php?cmd=rename" method="post" class="edit_dn" />';
 
31
echo '<br /><center><form action="cmd.php?cmd=rename" method="post" />';
32
32
printf('<input type="hidden" name="server_id" value="%s" />',$ldapserver->server_id);
33
33
printf('<input type="hidden" name="dn" value="%s" />',htmlspecialchars($dn));
34
34
printf('<input type="text" name="new_rdn" size="30" value="%s" />',htmlspecialchars($rdn));
35
 
printf('<input class="update_dn" type="submit" value="%s" />',_('Rename'));
 
35
printf('<input type="submit" value="%s" />',_('Rename'));
36
36
echo '</form></center>';
37
37
?>