Show
Ignore:
Timestamp:
02/14/06 09:51:16 (3 years ago)
Author:
mbonetti
Message:

Some more fixes for possible sql injections

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/rss/constants.php

    r1181 r1275  
    158158define ('ITEM_SORT_HINT_MIXED', 0x02); 
    159159 
     160 
     161 
     162// Sanitizer constants 
     163define ('RSS_SANITIZER_SIMPLE_SQL', 0x01); 
     164define ('RSS_SANITIZER_NO_SPACES', 0x02); 
     165define ('RSS_SANITIZER_NUMERIC', 0x04); 
     166define ('RSS_SANITIZER_CHARACTERS',0x08); 
     167 
    160168// Profiling  
    161169//  - The profiling information is "html commented out" at the end of every html page 
    162170//define('PROFILING', 1); 
    163171//define('PROFILING_DB', 1); 
     172 
    164173?>