[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Koha-devel] [Bug 77] Multi-page OPAC search requires login
From: |
bugzilla-daemon |
Subject: |
[Koha-devel] [Bug 77] Multi-page OPAC search requires login |
Date: |
Wed Aug 14 04:07:04 2002 |
http://bugs.koha.org/cgi-bin/bugzilla/show_bug.cgi?id=77
------- Additional Comments From address@hidden 2002-08-14 23:06 -------
Ok, now I see the problem.
Here is the solution:
escape(), unescape()
use CGI qw/escape unescape/;
$q = escape('This $string contains ~wonderful~ characters');
$u = unescape($q);
These functions escape and unescape strings according to the URL hex escape
rules. For example, the space character will be converted into the string
"%20".
------- You are receiving this mail because: -------
You are the QA contact for the bug, or are watching the QA contact.