aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2007-03-10 11:23:53 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2007-03-10 11:23:53 +0000
commit54237665864178cc8984d4396130c2421363d322 (patch)
tree2837cbb617a149a22dc3b7b7e64cf1d2ae32ad79
parent3d02c2a8044199f62c06dbae827dd4447ce739c3 (diff)
downloadforums-54237665864178cc8984d4396130c2421363d322.tar
forums-54237665864178cc8984d4396130c2421363d322.tar.gz
forums-54237665864178cc8984d4396130c2421363d322.tar.bz2
forums-54237665864178cc8984d4396130c2421363d322.tar.xz
forums-54237665864178cc8984d4396130c2421363d322.zip
only tiny adjustements... and try to set the memory limit for the search indexing page to 128M...
git-svn-id: file:///svn/phpbb/trunk@7161 89ea8834-ac86-4346-8a33-228a782c2dd0
-rw-r--r--phpBB/adm/style/overall_header.html2
-rw-r--r--phpBB/adm/style/simple_header.html2
-rw-r--r--phpBB/includes/acp/acp_search.php3
3 files changed, 5 insertions, 2 deletions
diff --git a/phpBB/adm/style/overall_header.html b/phpBB/adm/style/overall_header.html
index fdd39abe6d..a80fa4c78d 100644
--- a/phpBB/adm/style/overall_header.html
+++ b/phpBB/adm/style/overall_header.html
@@ -83,7 +83,7 @@ function marklist(id, name, state)
*/
function trace(link)
{
- window.open(link.replace(/&amp;/g, '&'), '_trace', 'height=515, resizable=yes, scrollbars=yes, width=680');
+ window.open(link.replace(/&amp;/g, '&'), '_trace', 'height=515, resizable=yes, scrollbars=yes, width=750');
return false;
}
diff --git a/phpBB/adm/style/simple_header.html b/phpBB/adm/style/simple_header.html
index ca24f3891b..9d723a4f63 100644
--- a/phpBB/adm/style/simple_header.html
+++ b/phpBB/adm/style/simple_header.html
@@ -101,4 +101,4 @@ function swatch(field)
<body class="{S_CONTENT_DIRECTION}">
-<div id="page-body" style="padding: 0 10px;">
+<div id="page-body" style="padding: 0; padding-right: 10px;">
diff --git a/phpBB/includes/acp/acp_search.php b/phpBB/includes/acp/acp_search.php
index 2353150c03..e647a3d0b0 100644
--- a/phpBB/includes/acp/acp_search.php
+++ b/phpBB/includes/acp/acp_search.php
@@ -25,6 +25,9 @@ class acp_search
$user->add_lang('acp/search');
+ // For some this may be of help...
+ @ini_set('memory_limit', '128M');
+
switch ($mode)
{
case 'settings':