php4fan
php4fan
> Since there is no user access, and no way to un-share a public document, the only option possible is to delete it. I get that, but then in that...
Ok so there is a workaround (poorly documented if at all), but it's still a bug. Or a bad design which is just another type of bug. There's no need...
> I think this kind of automagic behavior is not the a way to help people understand your, my or ervery one else "logic". I'm not sure what you mean...
I would rather describe it as follows (and I don't think it's exactly the same): - if there isn't a zoom control, add a standalone FS control. - - in...
In `getLastChild(elem)`: ``` if (elem.lastChild.children && elem.lastChild.children.length > 0) { return getLastChild(Array.prototype.slice.call(elem.children).pop()); } ``` Is this supposed to be: ``` if (elem.lastChild && elem.lastChild.children && elem.lastChild.children.length > 0) { return...
Also here: ``` //This is the absolute last child, a text node, but something's wrong with it. Remove it and keep trying else if (!elem.lastChild || !elem.lastChild.nodeValue || elem.lastChild.nodeValue ==...
Oh shit I'm wasting my time, this project hasn't been touched in 9 years.
Turns out I was passing ``` 'property' => MY_PROPERTY_ID ``` instead of ``` 'property' => 'properties/' . MY_PROPERTY_ID ``` Again, you need to fix the error message, something like "Invalid...
> @php4fan Would you be able to share a brief stacktrace, please? @dwsupplee did you try and fail to reproduce as per my previous comment?
> We're marking this issue as unconfirmed because it has not had recent activity This is stupid. If there hasn't been any recent activity, then do some activity and fix...