Increase width config tab

Increase width item kits form
Add ob_clean call to before force_download
This commit is contained in:
jekkos-t520
2015-02-09 16:57:44 +01:00
parent 0616560e3e
commit c763e8831f
4 changed files with 4 additions and 4 deletions

View File

@@ -135,7 +135,7 @@ class Item_kits extends Secure_area implements iData_controller
*/
function get_form_width()
{
return 360;
return 400;
}
}
?>

View File

@@ -5,7 +5,7 @@
<link rel="stylesheet" rev="stylesheet" href="<?php echo base_url();?>css/login.css" />
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Open Source Point Of Sale <?php echo $this->lang->line('login_login'); ?></title>
<script src="<?php echo base_url();?>js/jquery-1.2.6.min.js" type="text/javascript" language="javascript" charset="UTF-8"></script>
<script src="<?php echo base_url();?>js/jquery-1.8.3.js" type="text/javascript" language="javascript" charset="UTF-8"></script>
<script type="text/javascript">
$(document).ready(function()
{

View File

@@ -127,7 +127,7 @@ a.none
#config_info
{
width:80%;
width:93%;
margin:0 auto;
padding:10px;
margin-bottom:30px;

View File

@@ -97,7 +97,7 @@ if ( ! function_exists('force_download'))
header('Pragma: no-cache');
header("Content-Length: ".strlen($data));
}
ob_clean();
exit($data);
}
}