Recent content by Pepelac

  1. Pepelac

    Fixed helper_birthday_input — ul tag is not closed

    See attachment
  2. Pepelac

    Fixed Query plan is not optimal while selecting from session_activity

    I clearly understand that this is not a XF issue, but... This query is not using index on the view_date column SELECT session_activity.* , user.*, user_profile.*, user_option.* FROM xf_session_activity AS session_activity LEFT JOIN xf_user AS user ON (user.user_id =...
  3. Pepelac

    Fixed Warning expiration automatically lifts a permanent ban

    I assume that the following situation can be considered as a logical bug. Once there was a user. User received several warnings, exceeded maximum warning points and was banned (warning action option "Banned while at or above points threshold" was selected in this case). Later admin decided...
  4. Pepelac

    Fixed Undefined index: propertyName

    Relatively simple if it is true what I've found on stackoverflow :)
  5. Pepelac

    Lack of interest Thumbnail generation should be moved to the attachment handler

    For one good reason: there could be other content types (other than post), which could require specific thumbnails (square thumbs, thumbs with the specific size and so on). If thumbnail generation will be moved to the attachment handler, it will be much easier to affect this process.
  6. Pepelac

    Fixed Performance slow when viewing member list on large forums

    There are 3 queries which are too slow: two for selecting users for sidebar blocks and one for geting total user count (see attachment). I'd recommend to cache those results with rebuilding caches on user registration, banning or user_state changing.
  7. Pepelac

    Fixed Resource edit permission check is incorrect in some cases

    The canEditResource method will not work correctly if user has no permission to edit own resources, but has permission to edit resources by anyone. I suggest to change this method (and possibly others) in this way public function canEditResource(array $resource, array $category...
  8. Pepelac

    Fixed Phrase discuss_resource exists only in add-on xml?

    Phrase provide_description_for_this_release_etc also seems to be unused... And past_versions too... And view_older_updates
  9. Pepelac

    Fixed Too many tabs in phrase provide_n_depth_description_resource

    Is it by design (before "You should also ...")? Provide a more in-depth description of your resource, including its feature highlights and any other important information. You should also include installation instructions in this area, if any are required.
  10. Pepelac

    Fixed Phrase discuss_resource exists only in add-on xml?

    While translating RM into russian, I've found phrase discuss_resource, which seems to be unused.
  11. Pepelac

    Fixed message_user_info deleted user message count link

    Hi, I think that this can be considered as a bug. If in the "Show author message count" style option is enabled, link from the message count number leads to the 404 page (search/member, without user_id) in case of deleted user. There should be a simple check, does user exists and this link...
  12. Pepelac

    Fixed Error when getMetadataKey return array

    Fixed, but with small problem: undefined variable $metaDataPieces at line 53. Just rename it to $metadataPieces
  13. Pepelac

    Can't fix Avatar uploading - file size is too large

    Hi. After receiving some reports from users, that they can't upload avatars because of error "Your avatar's file size is too large. Please upload an avatar no bigger than XX KB", I've tried to dig into the code. It's a very strange idea to check user group avatar limits after uploading and...
  14. Pepelac

    Implemented Post Edit History

    Just a bridge between CMS and forum. It's a very specific add-on.
  15. Pepelac

    Implemented Post Edit History

    He doesn't mean that specifically your add-on slows forum's performance, but all of them make some difficulties to forum upgrade process and each new add-on brings from the one hand new features and from the other hand some problems. For example - here is the list of add-ons currently installed...
Top Bottom