Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Scout

Pages: [1]
1
Bug Fixes & Patches / [1.7.1] Small error in functions.php
« on: March 26, 2005, 02:02:05 PM »
I found a small error in functions.php on line 64:
Code: [Select]
function check_local_thumb($remote_thumb_file) {
  return !is_remote($local_thumb_file) && strpos($local_thumb_file, '/') !== false && preg_match("#\.[gif|jpg|jpeg|png]+$#i", $local_thumb_file) ? 1 : 0;
}
I suppose that function definition should look like
Code: [Select]
function check_local_thumb($local_thumb_file) {

Pages: [1]