Jump to content

[SOLVED] Legacy image filesystem gone?


gr4devel

Recommended Posts

Solved guys.

 

The option is simply hidden in the BO.

 

Look at the lines 55 and 56 in AdminImagesController.php :).

 

// No need to display the old image system if the install has been made later than 2013-03-26
 $this->display_move = (defined('_PS_CREATION_DATE_') && strtotime(_PS_CREATION_DATE_) > strtotime('2013-03-26')) ? false : true;

 

A possible way to reenable it is:

 

$this->display_move = (defined('_PS_CREATION_DATE_') && strtotime(_PS_CREATION_DATE_) > strtotime('2013-03-26')) ? true : true;

 

However let me warn you that all the changes apported directly to the core files of PS are automatically overridden in case of update.

 

If needed I'm here :)

  • Like 1
Link to comment
Share on other sites

  • 7 months later...
  • 5 months later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...