get text for new staus S_NEEDS_KORRECTION

This commit is contained in:
Uwe Steinmann 2018-01-29 11:39:53 +01:00
parent a8fad905a0
commit 093a1fa844

View File

@ -228,6 +228,9 @@ function getRevisionStatusText($status, $date=0) { /* {{{ */
case 1:
return getMLText("status_revised").($date !=0 ? " ".$date : "");
break;
case 6:
return getMLText("status_needs_correction").($date !=0 ? " ".$date : "");
break;
default:
return getMLText("status_unknown");
break;
@ -322,6 +325,9 @@ function getOverallStatusText($status) { /* {{{ */
case S_DRAFT:
return getMLText("draft");
break;
case S_NEEDS_CORRECTION:
return getMLText("needs_correction");
break;
default:
return getMLText("status_unknown");
break;