Issue in the list 123

Luca
Luca
Offline
0
Hi..
I'm experiencing this problem:
when I enter an artist in the list 123
it does not appear in the list of frontend.

The problem is in the structure of the table
jos_muscol_artists database. The field letter
is of type varchar(1) instead of varchar(3).
If I change the data letter of the artist from 1
to 123, in the frontend the artist appears in the list.

I hope that I explained well, my English isn't very good.
Responses (9)
  • Accepted Answer

    Luca
    Luca
    Offline
    Thursday, April 09 2009, 02:50 PM - #Permalink
    0
    There is also two change to do in the code..
    Now check if it works and what I write here the change.
    The reply is currently minimized Show
  • Accepted Answer

    Luca
    Luca
    Offline
    Thursday, April 09 2009, 02:58 PM - #Permalink
    0
    Edit: /administrator/components/com_muscol/tables/artist.php

    Find:

    if(in_array($this->letter,$exep))	$this->letter = "1";


    Replace with:

    if(in_array($this->letter,$exep))	$this->letter = "123";


    Edit: /administrator/components/com_muscol/views/artist/tmpl/form.php

    Find:

    "1" => "123"


    Replace with:

    "123" => "123"
    The reply is currently minimized Show
  • Accepted Answer

    Thursday, April 09 2009, 04:47 PM - #Permalink
    0
    hello

    you explain yourself just fine. I noticed this error, you're absolutely right

    I'll solve this on version 1.0.2, wich I plan to release this weekend

    thank you very much for your support :)
    The reply is currently minimized Show
  • Accepted Answer

    Luca
    Luca
    Offline
    Thursday, April 09 2009, 11:16 PM - #Permalink
    0
    Thank you also for your great component.

    I am a bit scared to update because I made some changes. I hope you explain what is the files will change with the new version.
    The reply is currently minimized Show
  • Accepted Answer

    Subhramani
    Subhramani
    Offline
    Friday, April 10 2009, 02:02 AM - #Permalink
    0
    Hello,

    I seem to be facing the issue where the bands which are supposed to appear under the "123" list doesn't appear.

    Is the code change something which I can make as well?
    The reply is currently minimized Show
  • Accepted Answer

    Friday, April 10 2009, 10:07 AM - #Permalink
    0
    if you wait just some hours I'll upload a new upgrade (v1.0.2) that solves this error among others
    The reply is currently minimized Show
  • Accepted Answer

    Friday, April 10 2009, 09:36 PM - #Permalink
    0
    Version 1.0.2 available on the downloads area. This is fixed :)
    The reply is currently minimized Show
  • Accepted Answer

    Luca
    Luca
    Offline
    Friday, April 10 2009, 11:09 PM - #Permalink
    0
    Should I replace the code as it was before with the new version? I saw that were not modified the files that I changed, maybe because you've solved in another way.
    The reply is currently minimized Show
  • Accepted Answer

    Saturday, April 11 2009, 09:16 AM - #Permalink
    0
    I solved it in another way, more simply (just added a line on a file). so you can leave the files you modified the way they were before... :)
    The reply is currently minimized Show
Your Reply