# HG changeset patch # User edogawaconan # Date 1413909397 -32400 # Node ID 3c0b3a38a7fce81d5d3f5ed183d6f8b293eb3dc0 # Parent 3dbddf76760ae8801271757072eb43a492e36239 Stupid lightbox2 can't copy image url directly ._. diff -r 3dbddf76760a -r 3c0b3a38a7fc index.php --- a/index.php Wed Oct 22 01:17:34 2014 +0900 +++ b/index.php Wed Oct 22 01:36:37 2014 +0900 @@ -45,7 +45,7 @@ function link_to($target, $title) { $lightbox = ""; if (substr($target, -1) !== "/" && preg_match("/(jpe?g|gif|png|webp)$/i", pathinfo($target, PATHINFO_EXTENSION)) === 1) { - $lightbox = ' data-lightbox="aa" data-title="' . $target . '" '; + $lightbox = ' data-lightbox="aa" data-title="' . h('' . h($target) . "") . '" '; } return('" . h($title) . ""); @@ -128,6 +128,9 @@ +