Changeset 1545 for trunk/gregarius/feed.php
- Timestamp:
- 08/24/06 06:26:01 (2 years ago)
- Files:
-
- 1 modified
-
trunk/gregarius/feed.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/gregarius/feed.php
r1544 r1545 61 61 ) { 62 62 $sqlid = sanitize($_REQUEST['channel'], RSS_SANITIZER_SIMPLE_SQL | RSS_SANITIZER_NO_SPACES); 63 63 64 $sql = "select id from " . getTable("channels") ." where title like '$sqlid'"; 64 65 if (hidePrivate()) { … … 1277 1278 case 'folder': 1278 1279 $sql = "select f.id, f.name, count(*) from " . getTable('channels') . " c " 1279 ."inne join " . getTable('folders') . " f on f.id = c.parent "1280 ."inner join " . getTable('folders') . " f on f.id = c.parent " 1280 1281 ." where f.name != '' "; 1281 1282
