Bugs item #2981960, was opened at 2010-04-04 18:26
Message generated for change (Tracker Item Submitted) made by wikigong
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=559966&aid=2981960&group_id=80503
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: cchost
Group: None
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: wikiGong.com Songmaster (wikigong)
Assigned to: Victor Stone (fourstones)
Summary: Incorrect Help Line Display
Initial Comment:
On the self-contained project submission page (e.g.
mydomain.com/cchost/submit/fullmix), the field immediately below "Submit a
Self-Contained Project" displays "str_submit_original_help_line", whereas other
submission pages display explanatory prose in the same field. For example, the
"Submit a Derived Work" page (e.g. mydomain.com/cchost/submit/remix) displays
"Use this form to submit a derived work." in the same field.
The problem seems to originate in
ccHost/ccskins/shared/strings/all_media.php (in a default installation, i.e. in
which "cchost" is the install directory), in which lines 759-760 use the same
variable name twice:
$GLOBALS['str_submit_original_help'] = _('A self-contained project does not
derive any material from outside sources. It is a totally original work.');
$GLOBALS['str_submit_original_help'] = _('Use this form to upload a
self-contained project.');
The solution is to change second variable name from "str_submit_original_help"
to "str_submit_original_help_line", so that lines 759-760 look like this:
$GLOBALS['str_submit_original_help'] = _('A self-contained project does not
derive any material from outside sources. It is a totally original work.');
$GLOBALS['str_submit_original_help_line'] = _('Use this form to upload a
self-contained project.');
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=559966&aid=2981960&group_id=80503
_______________________________________________
cc-devel mailing list
[email protected]
http://lists.ibiblio.org/mailman/listinfo/cc-devel