Attachments 2.0 and Vanilla 1.0.2
I've just upgraded to Vanilla 1.0.2 and now I get this warning:
Everything seems to work fine despite this message. I suppose I'll have to disable it manually in the code.
You have enabled Attachments 2.0, but it needs Vanilla 1.0.1! Your current Vanilla version is: 1.0.2
Everything seems to work fine despite this message. I suppose I'll have to disable it manually in the code.
0
This discussion has been closed.
Comments
if( APPLICATION_VERSION !== '1.0.2' ) {
...and replace '1.0.1' by '1.0.2'. Dumb and easy.
if (version_compare(APPLICATION_VERSION, '1.0.1', '<')) {
if( APPLICATION_VERSION !== '1.0.2' ) {
This doesn't! I still get the message when I use this...
if (!version_compare(APPLICATION_VERSION, '1.0.1', '<')) { // don't use this it's wrong
I realise that the second one is "The Right Way"TM, but it no workey for meCorrected as per Dinoboff's comment below!
if (version_compare(APPLICATION_VERSION, '1.0.1', '<')) {