Changeset 4097

Show
Ignore:
Timestamp:
Thu Nov 17 11:31:53 2005
Author:
mugur
Message:

fixed ticket:1465 - Error message missing on change issues´ URL Name

Files:

Legend:

Unmodified
Added
Removed
Modified
  • trunk/campsite/implementation/management/priv/lang/en/issues.php

    r4085 r4097  
    44 44 regGS("Issue Publishing Schedule", "Issue Publishing Schedule");  
    45 45 regGS("Invalid Input: $1", "Invalid Input: $1");  
      46 regGS("Issue Number", "Issue Number");  
      47 regGS("Go To Sections", "Go To Sections");  
    46 48 ?>  
  • trunk/campsite/implementation/management/priv/lang/en/globals.php

    r4096 r4097  
    380 380 regGS("Are you sure you want to deactivate the subscription?", "Are you sure you want to deactivate the subscription?");  
    381 381 regGS("Are you sure you want to activate the subscription?", "Are you sure you want to activate the subscription?");  
      382 regGS("Could not save the changes to the issue $1. Please make sure the issue URL name '$2' was not used before in the publication $3.", "Could not save the changes to the issue $1. Please make sure the issue URL name '$2' was not used before in the publication $3.");  
    382 383 ?>  
  • trunk/campsite/implementation/management/priv/issues/do_edit.php

    r4032 r4097  
    63 63     $logtext = getGS('Issue $1 updated in publication $2', $cName, $publicationObj->getName());  
    64 64     Log::Message($logtext, $User->getUserName(), 11);  
      65 } else {  
      66     $errMsg = getGS("Could not save the changes to the issue $1. Please make sure the issue URL name '$2' was not used before in the publication $3.",  
      67                     $issueObj->getName(), $issueObj->getUrlName(), $publicationObj->getName());  
      68     camp_html_display_error($errMsg, $backLink);  
      69     exit;  
    65 70 }  
    66 71