desktop.php 448 B

12345678910111213141516
  1. <?php
  2. define('CURSCRIPT','desktop');
  3. define('IN_MYMPS', true);
  4. require_once dirname(__FILE__).'/include/global.php';
  5. require_once dirname(__FILE__).'/data/config.php';
  6. $Shortcut = "[InternetShortcut]
  7. URL=$mymps_global[SiteUrl]/
  8. IDList=
  9. [{000214A0-0000-0000-C000-000000000046}]
  10. Prop3=19,2
  11. ";
  12. header("Content-type: application/octet-stream");
  13. header("Content-Disposition: attachment; filename=$mymps_global[SiteName].url;");
  14. echo $Shortcut;
  15. ?>