Can't use options next, previous, first, last, export, search in version 1.3
- Single Page
Posted 01 September 2012 - 02:43 AM
[img]http://www.upl.co/uploads/Screen-Shot-20120901-at-330.png[/img]
[img]http://www.upl.co/uploads/Screen-Shot-20120901-at-330-25.png[/img]
Posted 01 September 2012 - 07:09 AM
Posted 01 September 2012 - 10:16 AM
[b]Step 1.[/b] Go to application/libraries/grocery_crud.php and replace the
@ob_end_clean()
with :
ob_end_clean()
(there will be one replacement)
[b]Step 2[/b]. Now replace again the:
ob_end_clean()
with :
@ob_end_clean()
(there will be 10 replacements)
and probably will work. You can also see the changes at: https://github.com/s...comment-1796678 so don't worry about future versions as this small bug will be fixed.
Cheers
Johnny
Posted 01 September 2012 - 16:43 PM
Hello [member='midnigther'], I don't know why it is happening to you and I cannot reproduce the error but probably this will fix your problem:
[b]Step 1.[/b] Go to application/libraries/grocery_crud.php and replace the
@ob_end_clean()
with :
ob_end_clean()
(there will be one replacement)
[b]Step 2[/b]. Now replace again the:
ob_end_clean()
with :
@ob_end_clean()
(there will be 10 replacements)
and probably will work. You can also see the changes at: https://github.com/s...comment-1796678 so don't worry about future versions as this small bug will be fixed.
Cheers
Johnny
[/quote]
Thanks web-johnny, this solved my problem.
However you may want add the corresponding translation helper.
//list_template.php
<span class="export"><?php $this->l('export'); ?></span>...
<span class="print"><?php $this->l('print'); ?></span>
Posted 01 September 2012 - 16:47 PM
Thanks