Changeset 333
- Timestamp:
- 02/18/08 20:12:51 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/dcom/_public.php
r271 r333 72 72 $url = 73 73 $date = $title = $author = $comment = ''; 74 $s_url = (strpos($p['stringformat'],'%5$s') === false)? false : true;75 $s_date = (strpos($p['stringformat'],'%1$s') === false)? false : true;76 $s_title = (strpos($p['stringformat'],'%2$s') === false)? false : true;77 $s_author = (strpos($p['stringformat'],'%3$s') === false)? false : true;78 $s_comment = (strpos($p['stringformat'],'%4$s') === false)? false : true;74 $s_url = strpos($p['stringformat'],'%5$s') === false ? false : true; 75 $s_date = strpos($p['stringformat'],'%1$s') === false ? false : true; 76 $s_title = strpos($p['stringformat'],'%2$s') === false ? false : true; 77 $s_author = strpos($p['stringformat'],'%3$s') === false ? false : true; 78 $s_comment = strpos($p['stringformat'],'%4$s') === false ? false : true; 79 79 80 80 while ($rs->fetch())
Note: See TracChangeset
for help on using the changeset viewer.