Ignore:
Timestamp:
Feb 1, 2006, 3:46:26 AM (18 years ago)
Author:
rvelices
Message:

feature 280: Allow visitors/users to choose image ordering inside a category

improvement 82: Viewing pictures from remote galleries does not check anymore
for the high pictures (existence flag added to create_listing_file and db)

correction: link element in picture is in the head instead of body (w3c spec)

correction: in profile.php the current template was not selected by default

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/functions.inc.php

    r1015 r1020  
    534534}
    535535
     536function url_is_remote($url)
     537{
     538  if (preg_match('/^https?:\/\/[~\/\.\w-]+$/', $url))
     539  {
     540    return true;
     541  }
     542  return false;
     543}
     544
    536545/**
    537546 * returns available templates/themes
Note: See TracChangeset for help on using the changeset viewer.