Totti Posted January 17, 2022 Share Posted January 17, 2022 (edited) Ciao a tutti ho un problema $myAttribute_ITA = new Attribute($value['id_attribute'],1); $myAttribute_ITA->name = "nuovo nome"; $myAttribute_ITA->update() Se uso questo codice per la lingua italiana funziona se uso questo non mi salva nulla, è un bug o mi perdo qualcosa ? $myAttribute_ENG = new Attribute($value['id_attribute'],2); $myAttribute_ENG->name = "nuovo nome"; $myAttribute_ENG->update() Edited January 17, 2022 by Totti (see edit history) Link to comment Share on other sites More sharing options...
fedesib Posted January 18, 2022 Share Posted January 18, 2022 Ciao, solo un'idea: dato che il costruttore di Attribute ha anche idShop come terzo parametro, non è che magari basta aggiungere quello? public function __construct($id = null, $idLang = null, $idShop = null) e quindi scrivere: $myAttribute_ENG = new Attribute($value['id_attribute'],2,1); Dove 2 è ID lingua e 1 ID shop se hai un solo shop. Buon pomeriggio, Federica Link to comment Share on other sites More sharing options...
Totti Posted January 18, 2022 Author Share Posted January 18, 2022 Già avevo provato ma non è quello, sembra essere un bug, ma ho risolto in altro modo. Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now