Skip to content
Snippets Groups Projects
Commit 0deaa5d8 authored by Andreas Gohr's avatar Andreas Gohr
Browse files

popularity plugin: record PCRE infos

darcs-hash:20080220213222-7ad00-b573be21ba534bbd1a2d0616112d0d622338eaf8.gz
parent ae763810
No related branches found
No related tags found
No related merge requests found
......@@ -19,7 +19,7 @@ require_once(DOKU_INC.'inc/search.php');
* need to inherit from this class
*/
class admin_plugin_popularity extends DokuWiki_Admin_Plugin {
var $version = '2008-02-18';
var $version = '2008-02-20';
/**
......@@ -189,6 +189,11 @@ class admin_plugin_popularity extends DokuWiki_Admin_Plugin {
// plugins
$data['plugin'] = plugin_list();
// pcre info
if(defined('PCRE_VERSION')) $data['pcre_version'] = PCRE_VERSION;
$data['pcre_backtrack'] = ini_get('pcre.backtrack_limit');
$data['pcre_recursion'] = ini_get('pcre.recursion_limit');
// php info
$data['os'] = PHP_OS;
$data['webserver'] = $_SERVER['SERVER_SOFTWARE'];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment