]> git.mxchange.org Git - quix0rs-gnu-social.git/commit
Add default icon to OAuth apps
authorChimo <chimo@chromic.org>
Sat, 5 Sep 2015 21:02:17 +0000 (17:02 -0400)
committerChimo <chimo@chromic.org>
Sat, 5 Sep 2015 21:02:17 +0000 (17:02 -0400)
commitdc5dd69f2e365a3addada658fe8fc69f180f6329
treeb64d2778da36f8fc38b5b43730f67c227cd0fa71
parent7f30e614027fa27e83ecc32eb5443ee82d03f0f7
Add default icon to OAuth apps

When MySQL runs in strict mode, it doesn't seem possible to add a new OAuth app.

This is because:
 * The 'icon' field has no defaults and also has NOT NULL constraint.
 * GS uploads/sets the icon[1] (if provided) after the SQL insert[2]

The easiest fix seemed to be to provide a default icon value.
This change sets the default to the  "blue peg" default avatar from the base theme.

[1]
https://git.gnu.io/gnu/gnu-social/blob/7f30e614027fa27e83ecc32eb5443ee82d03f0f7/actions/newapplication.php#L176

[2]
https://git.gnu.io/gnu/gnu-social/blob/7f30e614027fa27e83ecc32eb5443ee82d03f0f7/actions/newapplication.php#L186
classes/Oauth_application.php