1
Add this to your myAds/addanonces.php file:
Find:Quote:
global $xoopsConfig, $xoopsUser, $xoopsTheme, $xoopsLogger;
include(XOOPS_ROOT_PATH."/header.php");
ADD THIS AFTER:Quote:
$title=ucwords(strtolower($title));
RESULTING IN:Quote:
global $xoopsConfig, $xoopsUser, $xoopsTheme, $xoopsLogger;
include(XOOPS_ROOT_PATH."/header.php");
$title=ucwords(strtolower($title));
This will change titles such as:
Quote:
FOR SALE: ONE USED CAPS LOCK KEY
into:
Quote:
For Sale: One Used Caps Lock Key
Of course, it also changes:
Quote:
For Sale: Something like IBM
Into:
Quote:
For Sale: Something Like Ibm
which could be annoying...