diff options
author | Mian Saleem <MianSaleem@users.noreply.github.com> | 2014-07-31 12:16:20 +0200 |
---|---|---|
committer | Mian Saleem <MianSaleem@users.noreply.github.com> | 2014-07-31 12:16:20 +0200 |
commit | a3f13b74fe88a899c476efd0d275cabaaac24ff2 (patch) | |
tree | d903829ebb8bae12e6996ea37d551cff914d1294 /system/helpers/url_helper.php | |
parent | 466af6c937bb7402cafe4f6c1392df7ccc526953 (diff) |
anchor popup attribute missing
Please add the menubar attribute to anchor popup
Diffstat (limited to 'system/helpers/url_helper.php')
-rw-r--r-- | system/helpers/url_helper.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/system/helpers/url_helper.php b/system/helpers/url_helper.php index 4493d5b97..f5a880c9b 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' => 'yes', 'status' => 'yes', 'resizable' => 'yes', 'screenx' => '0', 'screeny' => '0') as $key => $val) { $atts[$key] = isset($attributes[$key]) ? $attributes[$key] : $val; unset($attributes[$key]); @@ -558,4 +558,4 @@ if ( ! function_exists('redirect')) } /* End of file url_helper.php */ -/* Location: ./system/helpers/url_helper.php */
\ No newline at end of file +/* Location: ./system/helpers/url_helper.php */ |