When a member reaches their daily download limit they see this message.
You have reached your free download daily limit of 6
I would like to add some text after the number 6.
I searched all files for $txt['downloads_txt_day_limit'] and found this in Downloads2.php
//$totalRow = $smcFunc['db_fetch_assoc']($dbresult);
$totalRow['total'] = mysql_num_rows($dbresult);
if ($totalRow['total'] >= $maxdownloadsperday)
fatal_error($txt['downloads_txt_day_limit'] . $maxdownloadsperday, false);
else
return true;
}
I'm thinking this is were it gets the number to display at the end of the sentence and were I need to add text if I want it to display after the number.
Is that correct?
If so could you give me a example of were I would add any additional text.
I'm thinking I would echo the text at the very end, but I'm not really sure about the whole thing at this point.
Thanks,