all appears to be ok...
Here
and here... (Full Size Image)
but not here. as you can see theres no field for the user title. (Full Size Image)
Apparently they're working, however I'm not able to modify them in ACP or in my UCP...
Code: Select all
#
#------[ OPEN ]-----------------------------------------------
#
includes/acp/acp_users.php
#
#------[ FIND ]-----------------------------------------------
#
# Tip: This may be a partial find and not the whole line.
#
'interests' => utf8_normalize_nfc
#
#------[ AFTER, ADD ]-----------------------------------------
#
# Tip: Add these lines on a new blank line after the preceding line(s) to find.
#
//-- add mod : custom title v.2.0.b.2 [Aexoden] --------------------------------
'custom_title' => utf8_normalize_nfc(request_var('custom_title', $user_row['user_custom_title'], true)),
//-- end add : custom title v.2.0.b.2 [Aexoden] --------------------------------
#
#------[ FIND ]-----------------------------------------------
#
# Tip: This may be a partial find and not the whole line.
#
'interests' => array('string',
#
#------[ AFTER, ADD ]-----------------------------------------
#
# Tip: Add these lines on a new blank line after the preceding line(s) to find.
#
//-- add mod : custom title v.2.0.b.2 [Aexoden] --------------------------------
'custom_title' => array('string', true, 2, $config['custom_title_maxlength']),
//-- end add : custom title v.2.0.b.2 [Aexoden] --------------------------------
#
#------[ FIND ]-----------------------------------------------
#
# Tip: This may be a partial find and not the whole line.
#
'user_interests'=> $data['interests'],
#
#------[ AFTER, ADD ]-----------------------------------------
#
# Tip: Add these lines on a new blank line after the preceding line(s) to find.
#
//-- add mod : custom title v.2.0.b.2 [Aexoden] --------------------------------
'user_custom_title' => $data['custom_title'],
//-- end add : custom title v.2.0.b.2 [Aexoden] --------------------------------
#
#------[ FIND ]-----------------------------------------------
#
# Tip: This may be a partial find and not the whole line.
#
'INTERESTS' => $data['interests'],
#
#------[ AFTER, ADD ]-----------------------------------------
#
# Tip: Add these lines on a new blank line after the preceding line(s) to find.
#
//-- add mod : custom title v.2.0.b.2 [Aexoden] --------------------------------
'CUSTOM_TITLE' => $data['custom_title'],
//-- end add : custom title v.2.0.b.2 [Aexoden] --------------------------------
Code: Select all
#
#------[ OPEN ]-----------------------------------------------
#
adm/style/acp_users_profile.html
#
#------[ FIND ]-----------------------------------------------
#
# Tip: This may be a partial find and not the whole line.
#
<dd><textarea id="interests" name="interests" rows="3" cols="30">{INTERESTS}</textarea></dd>
</dl>
#
#------[ AFTER, ADD ]-----------------------------------------
#
# Tip: Add these lines on a new blank line after the preceding line(s) to find.
#
<!-- Start mod : custom title v.2.0.b2 -->
<dl>
<dt><label for="custom_title">{L_CUSTOM_TITLE}:</label></dt>
<dd><input type="text" id="custom_title" name="custom_title" value="{CUSTOM_TITLE}" /></dd>
</dl>
<!-- Finish mod : custom title v.2.0.b2 -->
#
#------[ OPTION ]---------------------------------------------
#
# Note : This code is for those that may want a textarea, like (Occupation, Interests).
#
<!-- Start mod : custom title v.2.0.b.2 -->
<dl>
<dt><label for="custom_title">{L_CUSTOM_TITLE}:</label></dt>
<dd><textarea id="custom_title" name="custom_title" rows="3" cols="30">{CUSTOM_TITLE}</textarea></dd>
</dl>
<!-- Finish mod : custom title v.2.0.b.2 -->
Code: Select all
[phpBB Debug] PHP Notice: in file /includes/ucp/ucp_pm_viewmessage.php on line 179: Undefined index: custom_title
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 3865: Cannot modify header information - headers already sent by (output started at /includes/functions.php:3208)
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 3867: Cannot modify header information - headers already sent by (output started at /includes/functions.php:3208)
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 3868: Cannot modify header information - headers already sent by (output started at /includes/functions.php:3208)
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 3869: Cannot modify header information - headers already sent by (output started at /includes/functions.php:3208)
Bogey wrote:Is this ever getting off BETA stage?
If you already have a fully functional installation, there probably isn't any critical reason to upgrade, other than to ease upgrades between any future versions that may exist. (I have no idea if I'll take it that far, of course. There aren't any features that I personally feel are needed, so unless someone requests something, I definitely have nothing more to do after release.)muggins wrote:Very nice, thank you!
I've used it for more than a year, and if you haven't changed anything in the core files, why upgrade?
A robust uninstall tool is a good plan! It ought to take the install.xml as input, eh?