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

« back to all changes in this revision

Viewing changes to htdocs/query_engine.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
 * Query render engine.
 
4
 *
 
5
 * @package phpLDAPadmin
 
6
 * @subpackage Page
 
7
 * @author The phpLDAPadmin development team
 
8
 */
 
9
 
 
10
/**
 
11
 */
 
12
 
 
13
require './common.php';
 
14
require LIBDIR.'query_functions.php';
 
15
 
 
16
$request = array();
 
17
$request['page'] = new QueryRender($app['server']->getIndex(),get_request('query','REQUEST',false,null));
 
18
$request['page']->accept();
 
19
?>