101

(1 replies, posted in PunBB 1.3 troubleshooting)

search.php
Doing a search on username that is either existent or nonexistent returns all topics.

102

(6 replies, posted in PunBB 1.3 troubleshooting)

profile.php - In the title and in the breadcrumb.

103

(6 replies, posted in PunBB 1.3 troubleshooting)

Usernames containing & are displayed as & in the title and breadcrumb.

104

(52 replies, posted in PunBB 1.3 troubleshooting)

common.php
'Forwarding info'        =>    'You should automatically be forwarded to a new page in %s seconds.',
- When 1 second is specified, then the above should show 'seconds' as 'second'.


admin.php
'No users selected'    =>    'No users selected'
- Add a period.


Help with BBCode
name@example.com produces  myname@example.com 
- Change myname to name.

Underlined text produces  Underlined text 
- It is not underlined.

Bold, underlined text produces  Bold, underlined text 
- It is not underlined.

105

(0 replies, posted in PunBB 1.3 troubleshooting)

Long username is wrapping to the second line and overlapping the title.

106

(3 replies, posted in PunBB 1.3 troubleshooting)

Sorry I forgot to mention the following also:

- Newest registered user
- Online list
- Search: Display results as posts

Thank you.

107

(16 replies, posted in PunBB 1.3 troubleshooting)

Got it! Thanks.

108

(16 replies, posted in PunBB 1.3 troubleshooting)

Smartys wrote:

qubertman: Use an isset

When the checkbox is unchecked and when saving, then the "Undefined index" error.

    <hook id="pf_change_details_settings_validation"><![CDATA[
        $form['show_online'] = $_POST['form']['show_online'];
        $form['show_online'] = (isset($form['show_online'])) ? 1 : 0;
    ]]></hook>


In viewtopic.php (line 472), there isn't a hook to change the icon status. I can get the text to display offline, but the icon is blue indicating online.

                    <div class="user<?php if ($cur_post['is_online'] == $cur_post['poster_id']) echo ' online' ?>">

FYI: Trying to convert the Hide User mod.

109

(16 replies, posted in PunBB 1.3 troubleshooting)

Yes it is.

110

(16 replies, posted in PunBB 1.3 troubleshooting)

I am getting an "Undefined index" when the new field (checkbox) is unchecked. When the new field is hard coded into the array, then it works fine.

111

(16 replies, posted in PunBB 1.3 troubleshooting)

$form = extract_elements(array('dst', 'timezone', 'language', 'email_setting', 'save_pass', 'notify_with_post', 'auto_notify', 'time_format', 'date_format', 'disp_topics', 'disp_posts', 'show_smilies', 'show_img', 'show_img_sig', 'show_avatars', 'show_sig', 'style'));

($hook = get_hook('pf_change_details_settings_validation')) ? eval($hook) : null;


In the hook, how to add additional fields to the array for the extract_elements function? Thanks.

112

(151 replies, posted in PunBB 1.3 extensions)

footer.php (line 103)
- Hook to retrieve to modify the query.

"Moved extension stylesheet to it's own folder."

- Change it's to its.

Thanks.

114

(151 replies, posted in PunBB 1.3 extensions)

index.php
- Hook to add column(s) before the forum column. For example, be able add icons to distinguish the different forums.

viewforum.php
- Hook to add column(s) before the subject column. In our case, the column is for thumbnails of items for sale. This column could also be use for post icons.

Thanks for the changes.

One more suggestion:
- Make the title "Top 20 Users" a language variable.

How are the extensions sorted on this page? It is not in alphabetical order by extension name.

Suggestions: Put a comma after each entry. Make the links SEF.

Thanks.

118

(1 replies, posted in PunBB 1.3 troubleshooting)

// Load the post.php/edit.php language file
- Remove /edit.php from the comment


$can_edit_subject = ($id == $cur_post['first_post_id'] && (($pun_user['g_edit_subjects_interval'] == '0' || (time() - $cur_post['posted']) < $pun_user['g_edit_subjects_interval']) || $pun_user['is_admmod'])) ? true : false;

Suggestion: Move the above line after // Do we have permission to edit this post?

119

(151 replies, posted in PunBB 1.3 extensions)

User list
- Be able to add columns before/after the Username. This is our user list: country (flag icon), website (link) , ebay (link), blog (link), then username, real name.

120

(3 replies, posted in PunBB 1.3 troubleshooting)

"Allow users to view the user list and user profiles"

In topic view, please consider not hyperlinking the username which results in "You do not have permission to access this page" when the above is unchecked.

This applies to the "Moderated by" usernames too.

Thanks.

121

(4 replies, posted in PunBB 1.3 troubleshooting)

StevenBullen wrote:

Moderators should not have silent edit function in forums they are not assigned to. tongue

I understand. This request is to allow moderators to edit their own postings without the "Edited by" for forums they are not moderators. They don't understand why they have that function in some of the forums and not all the forums. Then I would have to explain to them or make them moderators to all the forums.

122

(7 replies, posted in PunBB 1.3 troubleshooting)

Users > Searches > Results page

Please consider adding a checkbox for Select All that will toggle selecting/deselecting all checkboxes.

On this page: search-subscriptions.html where it displays all your subscriptions. Then add a fifth column with a header Select. This column will have a checkbox for each subscription and an Unsubscribe button at the bottom.

I can see adding another column with checkboxes similar to Administration > Users > User search results with an Unsubscribe button at the bottom.

125

(20 replies, posted in PunBB 1.3 troubleshooting)

Rickard wrote:

However, the cleaning function for those kinds of URLs is overdue for an update anyway, so lets hope that solves it.

For the forum name rewrite, please don't drop words that are 3 characters. For example, "New Members" is being rewritten as "forum1-Members.html".