Merge pull request #2006 from brayanpereyra/master

Arreglo de etiqueta hardcodeada
This commit is contained in:
Erik
2013-08-26 08:54:27 -07:00
2 changed files with 3 additions and 3 deletions

View File

@@ -43,8 +43,8 @@ $G_ID_SUB_MENU_SELECTED = 'EMAILS';
$userUid = (isset( $_SESSION['USER_LOGGED'] ) && $_SESSION['USER_LOGGED'] != '') ? $_SESSION['USER_LOGGED'] : null;
$status = array (
array ('',G::LoadTranslation( 'ID_ALL' )),
array ("sent", "Sent"),
array ("pending", "Pending")
array ("sent", G::LoadTranslation( 'ID_SENT' )),
array ("pending", G::LoadTranslation( 'ID_PENDING' ))
);
$processes = getProcessArray( $userUid );

View File

@@ -255,7 +255,7 @@ switch ($request) {
$response = new StdClass();
$result->success = true;
$result->msg = "Completed successfully";
$result->msg = G::LoadTranslation('ID_TITLE_COMPLETED');
echo G::json_encode( $result );