Skip to Content.
Sympa Menu

cc-devel - [cc-devel] [ cctools-Bugs-2981960 ] Incorrect Help Line Display

cc-devel AT lists.ibiblio.org

Subject: Developer discussion for Creative Commons technology and tools

List archive

Chronological Thread  
  • From: "SourceForge.net" <noreply AT sourceforge.net>
  • To: noreply AT sourceforge.net
  • Subject: [cc-devel] [ cctools-Bugs-2981960 ] Incorrect Help Line Display
  • Date: Mon, 05 Apr 2010 01:26:58 +0000

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] [ cctools-Bugs-2981960 ] Incorrect Help Line Display, SourceForge.net, 04/04/2010

Archive powered by MHonArc 2.6.24.

Top of Page