~ubuntu-branches/debian/jessie/phpldapadmin/jessie

« back to all changes in this revision

Viewing changes to htdocs/show_cache.php

  • Committer: Bazaar Package Importer
  • Author(s): Fabio Tranchitella
  • Date: 2009-03-16 14:54:15 UTC
  • mfrom: (1.2.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20090316145415-7dsvj319dd02h83j
Tags: 1.1.0.6-1
* New upstream release. (Closes: #518578)
* debian/rules: removed "-m 644" from the dh_install call. (Closes: #518847)
* debian/postrm: remove config.php at purge time. (Closes: #519086)
* debian/patches/hungarian.dpatch: fixed a hungarian translation.
  (Closes: #505559)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
<?php
2
 
// $Header: /cvsroot/phpldapadmin/phpldapadmin/htdocs/show_cache.php,v 1.3.2.1 2007/12/26 09:26:32 wurley Exp $
 
2
// $Header: /cvsroot/phpldapadmin/phpldapadmin/htdocs/show_cache.php,v 1.3.2.3 2008/12/12 12:20:22 wurley Exp $
3
3
 
4
4
/**
5
5
 * This script shows the contents of the cache for debugging purposes
11
11
 
12
12
require './common.php';
13
13
 
 
14
$entry = array();
14
15
$entry['key'] = get_request('key','REQUEST');
15
16
$entry['index'] = get_request('index','REQUEST');
16
17
 
80
81
                        poststr += "&index=" + encodeURI(xx);
81
82
                }
82
83
 
83
 
                obj.innerHTML = '<img src="images/ajax-spinner.gif" /> Loading...';
 
84
                obj.innerHTML = '<img src="<?php echo IMGDIR ?>/ajax-spinner.gif" /> Loading...';
84
85
                makePOSTRequest('cmd.php',poststr,'alertCacheContents','cancelCacheContents');
85
86
        }
86
87