Page 1 of 1
Looking for a phpBB MOD I have made?
Posted: Fri Feb 10, 2006 1:34 pm
by battye
I have written many MOD's for phpBB, here are some of the more current ones (there are about 5 or 6 others, which are quite old however).
- Ultimate Quiz MOD
- User Website MOD
- Jury MOD
- Shoutbox MOD
- Autologin Upon Registration
- SQL-MOD
- Add phpBB Functions To Notepad++ PHP API
- Standard Subject MOD
- Coin Toss
- Average Posts Per Topic
- IP's Only Visible To Admins
- Centre bbCode
- Usernames Begin With Capital Letter
- Topic Titles Begin With Capital Letter
If you are looking for support for any of these MOD's, feel free to post the request in this forum. Support for the Ultimate Quiz MOD, belongs in
http://forums.cricketmx.com/viewforum.php?f=63 however.
Support can also be obtained at
http://www.cmxmods.net/demo_board/index.php
If you wish to download any of the MOD's above, please visit
http://www.cmxmods.net
Thanks

Topic Titles Begin With Capital Letter
Posted: Sat Sep 16, 2006 11:33 am
by Leon
Topic Titles Begin With Capital Letter
#
#-----[ OPEN ]------------------------------------------
#
functions_post.php
#
#-----[ FIND ]------------------------------------------
#
global $userdata, $user_ip;
#
#-----[ AFTER, ADD ]------------------------------------------
#
$post_subject = ucfirst($post_subject);
#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoM
Well i can find the line:
global $userdata, $user_ip;
At 3 places. i wonder who the right one is

Posted: Sat Sep 16, 2006 11:38 am
by Leon
Centre bbCode
#
#-----[ OPEN ]------------------------------------------
#
includes/bbcode.php
#
#-----[ FIND ]------------------------------------------
#
// size
$text = preg_replace("/\[size=([1-2]?[0-9]):$uid\]/si", $bbcode_tpl['size_open'], $text);
$text = str_replace("[/size:$uid]", $bbcode_tpl['size_close'], $text);
#
#-----[ AFTER, ADD ]------------------------------------------
#
// [center] and [/center] for center text.
$text = str_replace("[center]", "<center>", $text);
$text = str_replace("[/center]", "</center>", $text);
#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoM
With this only the admin know that it exists,
how should members be able to see that they can do this ?
Posted: Sat Sep 16, 2006 12:15 pm
by Leon
Usernames Begin With Capital Letter
http://www.cmxmods.net
Link:
http://www.cmxmods.net/ubwcl.php
"Page can not be displayed"
= Non working link
Posted: Sat Sep 16, 2006 3:12 pm
by battye
Username Begins With Capital:
http://www.cmxmods.net/usernames_begin_ ... letter.php
Centre bbCode
That was a MOD I made in about 5 minutes and never really released

It is a bit like the [you] bbCode at this forum which makes the forum say your username whenever you say it. The members don't really know about it unless you tell them
Topic titles:
I've had a look through the files and I'm pretty sure it is where it says:
Code: Select all
//
// Post a new topic/reply/poll or edit existing post/poll
//
function submit_post($mode, &$post_data, &$message, &$meta, &$forum_id, &$topic_id, &$post_id, &$poll_id, &$topic_type, &$bbcode_on, &$html_on, &$smilies_on, &$attach_sig, &$bbcode_uid, $post_username, $post_subject, $post_message, $poll_title, &$poll_options, &$poll_length)
{
global $board_config, $lang, $db, $phpbb_root_path, $phpEx;
global $userdata, $user_ip;