View | Details | Raw Unified | Return to bug 9117
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt (-3 / +5 lines)
Lines 67-73 $(document).ready(function(){ Link Here
67
            { 'bSearchable': false, 'aTargets': [3, 4] }
67
            { 'bSearchable': false, 'aTargets': [3, 4] }
68
        ],
68
        ],
69
        'oLanguage': {
69
        'oLanguage': {
70
            'sZeroRecords': _('No matching reports found')
70
            'sZeroRecords': _("No matching reports found")
71
        }
71
        }
72
    }));
72
    }));
73
73
Lines 280-286 canned reports and writing custom SQL reports.</p> Link Here
280
                    <th>Saved results</th>
280
                    <th>Saved results</th>
281
                    <th>Saved SQL</th>
281
                    <th>Saved SQL</th>
282
                    <th>&nbsp;</th>
282
                    <th>&nbsp;</th>
283
                    <th>&nbsp;</th>
283
                    [% IF ( CAN_user_reports_create_reports ) %]
284
                        <th>&nbsp;</th>
285
                    [% END %]
284
                </tr>
286
                </tr>
285
            </thead>
287
            </thead>
286
            <tbody>
288
            <tbody>
Lines 808-814 Sub report:<select name="subreport"> Link Here
808
[% IF (public) %]
810
[% IF (public) %]
809
  <li><label for="public">Report is public:</label><select id="public" name="public"> <option value="0">No (default)</option> <option value="1" selected="selected">Yes</option> </select></li>
811
  <li><label for="public">Report is public:</label><select id="public" name="public"> <option value="0">No (default)</option> <option value="1" selected="selected">Yes</option> </select></li>
810
[% ELSE %]
812
[% ELSE %]
811
  <li><label for="public">Report is public:</label><select id="public" name="public"> <option value="0" selected="selelcted">No (default)</option> <option value="1">Yes</option> </select></li>
813
  <li><label for="public">Report is public:</label><select id="public" name="public"> <option value="0" selected="selected">No (default)</option> <option value="1">Yes</option> </select></li>
812
[% END %]
814
[% END %]
813
[% IF (usecache) %] <li>
815
[% IF (usecache) %] <li>
814
<label for="cache_expiry">Cache expiry:</label><input type="text" id="cache_expiry" name="cache_expiry" value="[% cache_expiry %]"></input>
816
<label for="cache_expiry">Cache expiry:</label><input type="text" id="cache_expiry" name="cache_expiry" value="[% cache_expiry %]"></input>
(-)a/reports/guided_reports.pl (-1 / +1 lines)
Lines 18-23 Link Here
18
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19
19
20
20
21
use Modern::Perl;
21
use CGI;
22
use CGI;
22
use Text::CSV;
23
use Text::CSV;
23
use URI::Escape;
24
use URI::Escape;
24
- 

Return to bug 9117