Michele Locati

Results 74 issues of Michele Locati

Consider this sample: ```html target ``` where `#panel` has `position: absolute` and `overflow: auto;` CSS styles. In this case, tours associated to `#target` are wrongly placed. See for example https://jsfiddle.net/LocatiM/yr5epw9t/8/...

As per docs, `element` can be a string. If so, the current code assign `popOpts.selector` the value `#undefined` (because `step.element[0]` returns the first char of the string, which doesn't have...

This isn't really an issue. I just wanted to say that I added support for tdlib to my [`install-php-extensions`](https://github.com/mlocati/docker-php-extension-installer) script. That way, you can install the extension in Docker images...

This is an announcement rather than an issue: to download and install language files you can use my brand new [Translations Updater](https://github.com/mlocati/concrete5-translations-updater) add-on.

### Bug description When generating audacity.pot, we have these errors/warnings: ``` ;; Recreating audacity.pot using .h, .cpp and .mm files src/PluginStartupRegistration.cpp:79: warning: Empty msgid. It is reserved by GNU gettext:...

bug
P5
translation / i18n

When we install the protobuf PHP extension, we usually install the latest version. This is done by fetching the tarball available at https://pecl.php.net/get/protobuf (or at https://pecl.php.net/get/protobuf/stable) The problem is that...

php
release notes: no

PHP 8.2 is around the corner, and they've just published 8.2.0RC2. So, what about testing protobuf with it? Also: even if everything compiles and the PHP extension can be used,...

php
release notes: yes

Consider this code: ```php $app = app(); $command = (new Concrete\Core\User\Group\Command\AddGroupCommand())->setName('Test'); $group = $app->executeCommand($command); echo "Group: {$group->getGroupPath()} (ID={$group->getGroupID()})\n"; $user = Concrete\Core\User\User::getByUserID(USER_SUPER_ID); $user->enterGroup($group); echo $user->inGroup($group) ? "User correctly entered group.\n" :...

I have some custom code that deletes group and child groups. I'm not sure when and how this occurs, but I have this error: ``` Error: Call to a member...