Browse Source

lol

tags/vichan-devel-4.4.96
Michael Foster 10 years ago
parent
commit
4cd2389655
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      inc/functions.php
  2. +1
    -1
      post.php

+ 1
- 1
inc/functions.php View File

@@ -94,7 +94,7 @@ function loadConfig() {
if (!isset($config['referer_match']))
if (isset($_SERVER['HTTP_HOST'])) {
$config['referer_match'] = '/^' .
(preg_match('@^https?:@//', $config['root']) ? '' :
(preg_match('@^https?://@', $config['root']) ? '' :
'https?:\/\/' . $_SERVER['HTTP_HOST']) .
preg_quote($config['root'], '/') .
'(' .


+ 1
- 1
post.php View File

@@ -273,7 +273,7 @@ if (isset($_POST['delete'])) {
if ($config['allow_upload_by_url'] && isset($_POST['file_url']) && !empty($_POST['file_url'])) {
$post['file_url'] = $_POST['file_url'];
if (!preg_match('@^https?:@//', $post['file_url']))
if (!preg_match('@^https?://@', $post['file_url']))
error($config['error']['invalidimg']);
if (mb_strpos($post['file_url'], '?') !== false)


Loading…
Cancel
Save