A few bugs

alt=
@dim
10 years ago
167 posts
Hi,

Phrases "Account Settings" and "Logout" in the menu is always in English, regardless of the selected language on the site.

If I write a title for Forum only the numbers, then that topic will not be open (read). For example, the title is "456" => "The page you requested was not found!"

If I write the title of the album in Russian, then I will not be able to edit that album.

In jrFollower/following.tpl
Line 16
It was:
 <a href="{$jamroom_url}/{$item.profile_url}">{jrCore_module_function function="jrImage_display" module="jrProfile" type="profile_image" item_id=$item._profile_id size="large" crop="auto" class="img_scale" width=false height=false alt="{$txt|jrCore_entity_string}" title="{$txt|jrCore_entity_string}"}</a><br><a href="{$jamroom_url}/{$item.profile_url}">@{$item.profile_url}</a><br>

Must be:
 <a href="{$jamroom_url}/{$item.profile_url}">{jrCore_module_function function="jrImage_display" module="jrProfile" type="profile_image" item_id=$item._profile_id size="large" crop="auto" class="img_scale" width=false height=false alt="{$txt|jrCore_entity_string}" title="{$txt|jrCore_entity_string}"}</a><br><a href="{$jamroom_url}/{$item.profile_url}">@{$item.profile_name}</a><br>

updated by @dim: 02/25/16 01:40:34AM
brian
@brian
10 years ago
10,149 posts
dim:
Phrases "Account Settings" and "Logout" in the menu is always in English, regardless of the selected language on the site.

I see this as well and will fix it up.

Quote:
If I write a title for Forum only the numbers, then that topic will not be open (read). For example, the title is "456" => "The page you requested was not found!"

So in the Profile Forum is the TITLE of a post is numbers only then it does not work? I can check that out as well.

Quote:
If I write the title of the album in Russian, then I will not be able to edit that album.

I will check that out as well.

Quote:
In jrFollower/following.tpl
Line 16
It was:
 <a href="{$jamroom_url}/{$item.profile_url}">{jrCore_module_function function="jrImage_display" module="jrProfile" type="profile_image" item_id=$item._profile_id size="large" crop="auto" class="img_scale" width=false height=false alt="{$txt|jrCore_entity_string}" title="{$txt|jrCore_entity_string}"}</a><br><a href="{$jamroom_url}/{$item.profile_url}">@{$item.profile_url}</a><br>

Must be:
 <a href="{$jamroom_url}/{$item.profile_url}">{jrCore_module_function function="jrImage_display" module="jrProfile" type="profile_image" item_id=$item._profile_id size="large" crop="auto" class="img_scale" width=false height=false alt="{$txt|jrCore_entity_string}" title="{$txt|jrCore_entity_string}"}</a><br><a href="{$jamroom_url}/{$item.profile_url}">@{$item.profile_name}</a><br>

Yes - good catch - we'll fix that up too.

Thank you!


--
Brian Johnson
Founder and Lead Developer - Jamroom
https://www.jamroom.net
brian
@brian
10 years ago
10,149 posts
Looks like "following.tpl" has already been fixed - I don't see that here.


--
Brian Johnson
Founder and Lead Developer - Jamroom
https://www.jamroom.net
alt=
@dim
10 years ago
167 posts
brian:
So in the Profile Forum is the TITLE of a post is numbers only then it does not work?
Yes it is.

brian:
Looks like "following.tpl" has already been fixed - I don't see that here.
I'm using version 1.7.2
brian
@brian
10 years ago
10,149 posts
The current Profile Followers module is 1.4.3 - double check you're looking in that module's template directory.

Thanks!


--
Brian Johnson
Founder and Lead Developer - Jamroom
https://www.jamroom.net
alt=
@dim
10 years ago
167 posts
Brian,
Sorry, you're right.
I'm using version 1.4.3. And I made a change in the template a few days ago.
alt=
@dim
10 years ago
167 posts
jrPrivateNote 1.4.2
In the /jrPrivateNote/note_detail.tpl
Line 12
It was:
<br><a href="{$jamroom_url}/{$_note_user.profile_url}"><h3>@{$_note_user.profile_url}</h3></a>
Must be:
<br><a href="{$jamroom_url}/{$_note_user.profile_url}"><h3>@{$_note_user.profile_name}</h3></a>
brian
@brian
10 years ago
10,149 posts
profile_url is the correct one if you include the @ - i.e.

@the-jamroom-network

NOT

@The Jamroom Network


--
Brian Johnson
Founder and Lead Developer - Jamroom
https://www.jamroom.net
alt=
@dim
10 years ago
167 posts
@brian,
profile_url incorrectly looks in Russian (and some other). For example: %BA%D0%BE%D1%80%D0%BE%D0%B2%D0%B0.
michael
@michael
10 years ago
7,805 posts
That looks like raw url encoding. Normally the browser would turn that into readable format for you when you have that language installed.

For instance, if i create an account with the username '日本語', because I have japanese installed in my system my browser shows: (screenshot) the correct characters.

BUT.... if i ctrl+c copy that url the address i get when I paste it into a text editor is:
http://jr500.hostsaba.com/%E6%97%A5%E6%9C%AC%E8%AA%9E

because that is what the actual address is. The readable characters are a service being provided by the browser. Browser can only read ascii characters in a URL.
screenshot_nihongo.png

Tags