summaryrefslogtreecommitdiffstats
path: root/system
diff options
context:
space:
mode:
authorAndrey Andreev <narf@devilix.net>2014-07-31 17:49:08 +0200
committerAndrey Andreev <narf@devilix.net>2014-07-31 17:49:08 +0200
commitb32599ec383c408b50fc254dd6e4a2b608512393 (patch)
tree5122f90be3948d669b1cc9d1d2be4959571fac5d /system
parent25df7a98f013f6d2a49ad09eb754c606a4bc010f (diff)
parentdc5fe5a179e41792a7fd4f2019e38bb13cddc675 (diff)
Merge pull request #3162 from MianSaleem/patch-1
anchor popup's menubar attribute is missing
Diffstat (limited to 'system')
-rw-r--r--system/helpers/url_helper.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/helpers/url_helper.php b/system/helpers/url_helper.php
index 4493d5b97..0846472e7 100644
--- a/system/helpers/url_helper.php
+++ b/system/helpers/url_helper.php
@@ -213,7 +213,7 @@ if ( ! function_exists('anchor_popup'))
$window_name = '_blank';
}
- foreach (array('width' => '800', 'height' => '600', 'scrollbars' => 'yes', 'status' => 'yes', 'resizable' => 'yes', 'screenx' => '0', 'screeny' => '0') as $key => $val)
+ foreach (array('width' => '800', 'height' => '600', 'scrollbars' => 'yes', 'menubar' => 'no', 'status' => 'yes', 'resizable' => 'yes', 'screenx' => '0', 'screeny' => '0') as $key => $val)
{
$atts[$key] = isset($attributes[$key]) ? $attributes[$key] : $val;
unset($attributes[$key]);