friendshipdaily.php 317 B

123456789101112131415
  1. <?php
  2. /*
  3. * friendship processing
  4. */
  5. if (ubRouting::get('action') == 'friendshipdaily') {
  6. if ($alterconf['FRIENDSHIP_ENABLED']) {
  7. $friends = new FriendshipIsMagic();
  8. $friends->friendsDailyProcessing();
  9. die('OK:FRIENDSHIP');
  10. } else {
  11. die('ERROR:FRIENDSHIP DISABLED');
  12. }
  13. }