Recent content by guiltar

  1. guiltar

    XenForo 2.0 Discussion

    Agree with @Yoskaldyr, extending current JS is very difficult, not even close to extending PHP.
  2. guiltar

    Partial fix Some errors are logged only in Debug Mode

    Unfortunately developers often don't have time to check all the code and all the user-interface on every XF upgrage. Many of them usually check the main functional and watch the error log then. Maybe there is a hope to have this logging optional disabled by default :rolleyes:
  3. guiltar

    Partial fix Some errors are logged only in Debug Mode

    Hello Kier and Mike! Maybe this issue can't be called a bug in a full meaning but it leads to ignoring errors by addon devs and incorrect work of some core methods. For example, there was a method className::methodName() It was extended in some addon. Then in newer XenForo version it gained...
  4. guiltar

    Not a bug Change 'self' to 'static' for late static binding in callbacks

    XenForo_Install_Model_Install public function getRequirementWarnings(Zend_Db_Adapter_Abstract $db = null) { $warnings = array(); $phpVersion = phpversion(); if (version_compare($phpVersion, '5.3.3', '<')) { $warnings['phpVersion'] = new...
  5. guiltar

    Not a bug Change 'self' to 'static' for late static binding in callbacks

    Last versions of XenForo require minimal PHP version 5.3.3. It means that it's already possible to use late static binding and it's possible to use static method by 'static'. That's why it's time to replace self::method() to static::method(). Also it's reasonable to replace self to static in...
  6. guiltar

    what?

    what?
  7. guiltar

    Not a bug data-vocabulary.org -> schema.org

    Vote for schema.org. Actually schema.org is becoming a standard and much more popular and data-vocabulary.org is becoming outdated http://moz.com/blog/schema-examples http://moz.com/blog/schema-examples https://support.google.com/webmasters/answer/164506?hl=en
  8. guiltar

    Fixed [Speed Up] No need to rebuild moderation queue if no rows affected

    Hello! There is a method. public function deleteFromModerationQueue($contentType, $contentIds) { .... $db = $this->_getDb(); $db->delete('xf_moderation_queue', 'content_type = ' . $db->quote($contentType) . ' AND content_id IN (' ...
  9. guiltar

    Template Modification System (TMS)

    guiltar updated Template Modification System (TMS) with a new update entry: XenForo 1.3 compability Read the rest of this update entry...
  10. guiltar

    Unmaintained Template Modification System (TMS) - XenForo 1.3 compability

    Fixed XenForo 1.3 compability
  11. guiltar

    Template Modification System (TMS)

    Updated github. Please, check now
  12. guiltar

    Lack of interest Analog of _setSilentEditOptions() for actionAddThread

    Hello! ControllerPublic_Post::actionSave calls method _setSilentEditOptions() before saving a post. So developer can insert a lot of extra actions with dw, post, thread, forum and input. Such a method would be very very useful in other similar places like...
  13. guiltar

    Template Modification System (TMS)

    Hello, for 1.3 see github
  14. guiltar

    Fixed [1.3RC1] Timeout while renaming user

    Hello! Renaming user causes timeouts since XenForo_Model_User::changeContentUser() is too heavy for large boards. Please make it deferred and also please check other _postSave() actions while renaming user.
  15. guiltar

    Template Modification System (TMS)

    You need debug mode
Top Bottom