• Welcome to the Chevereto User Community!

    Here, users from all over the world come together to learn, share, and collaborate on everything related to Chevereto. It's a place to exchange ideas, ask questions, and help improve the software.

    Please keep in mind:

    • This community is user-driven. Always be polite and respectful to others.
    • Support development by purchasing a Chevereto license, which also gives you priority support.
    • Go further by joining the Community Subscription for even faster response times and to help sustain this space

After upgrade to 3.6.7, I find out there is no Existing album when I try to Edit image details.

Status
Not open for further replies.

jefflin

Chevereto Member
After upgrade to 3.6.7, I find out there is no Existing album when I try to Edit image details.
I click albums button on the top right corner, I can see all the albums still there.
 
I also can confirm this.

When using the "quick edit" type of method, by clicking one of the icons from the slide-out toolbar over an image, the options window that is rendered is not populating the drop-down list of albums as expected. If I close that window and open the image view, and click the edit image link from there, the albums list is populating correctly.
 
app/lib/classes/class.user.php

Replace this:
PHP:
            if(is_array($var)) {
                $id = $var['id'];
            }
          
            $user_albums = [];

            // Build the user stream
            $user_stream = self::getStreamAlbum($var);

With this:
PHP:
            $id = is_array($var) ? $var['id'] : $var;
          
            $user_albums = [];

            // Build the user stream
            $user_stream = self::getStreamAlbum($id);

It has been already added to v3.6.7 so if you re-download it will include this fix. Thank you for let me know about this.
 
Status
Not open for further replies.
Back
Top