~ubuntu-branches/debian/wheezy/phpldapadmin/wheezy

« back to all changes in this revision

Viewing changes to lib/query_functions.php

  • Committer: Bazaar Package Importer
  • Author(s): Fabio Tranchitella
  • Date: 2010-04-10 10:12:22 UTC
  • mfrom: (1.2.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20100410101222-3xyuhy4a7usewxla
Tags: 1.2.0.5-1
* New upstream release. (Closes: #571672, #549464)
* debian/po/ru.po: added. (Closes: #536402)
* applied patch to fix lintian warnings. (Closes: #531649)
* Removed debian/patches that have been merged upstream.
* Do not build-depend anymore on dpatch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?php
 
2
/**
 
3
 * Classes and functions for searching the LDAP server
 
4
 *
 
5
 * These classes and functions will read our XML search files, for defined
 
6
 * search reports.
 
7
 *
 
8
 * @author The phpLDAPadmin development team
 
9
 * @package phpLDAPadmin
 
10
 */
 
11
 
 
12
/**
 
13
 * Query Class
 
14
 *
 
15
 * This class will store all our pre-defined search definitions.
 
16
 *
 
17
 * @package phpLDAPadmin
 
18
 * @subpackage Queries
 
19
 */
 
20
class Queries extends xmlTemplates {
 
21
}
 
22
?>