freelist.php 581 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. *
  4. * 自由列表
  5. *
  6. * @version $Id: freelist.php 1 15:38 2010年7月8日Z tianya $
  7. * @package DedeCMS.Site
  8. * @copyright Copyright (c) 2007 - 2010, DesDev, Inc.
  9. * @license http://help.dedecms.com/usersguide/license.html
  10. * @link http://www.dedecms.com
  11. */
  12. require_once(dirname(__FILE__)."/../include/common.inc.php");
  13. require_once(DEDEINC."/arc.freelist.class.php");
  14. if(!empty($lid)) $tid = $lid;
  15. $tid = (isset($tid) && is_numeric($tid) ? $tid : 0);
  16. if($tid==0) die(" Request Error! ");
  17. $fl = new FreeList($tid);
  18. $fl->Display();