Skip to content

Commit

Permalink
Merge pull request #66 from ianthe/LIB001-883
Browse files Browse the repository at this point in the history
LIB001-883: Removing urlencoding befor readfile to handle filenames with...
  • Loading branch information
ianthe committed Aug 28, 2014
2 parents 586fe9d + 519d88e commit b318410
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/controllers/record.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ function _remap($id, $params = array()) {
$filename = $segments[4];

if(preg_match('/^\d+$/',$seq)) {
$url = $this->config->item('skylight_objectproxy_url').$id.'/'.$seq.'/'.urlencode($filename);
$url = $this->config->item('skylight_objectproxy_url').$id.'/'.$seq.'/'.$filename;


// Which part of the solr results array is the bitstream in? (bitstream or thumbnail)
Expand Down

0 comments on commit b318410

Please sign in to comment.