Merge pull request #2006 from brayanpereyra/master
Arreglo de etiqueta hardcodeada
This commit is contained in:
@@ -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 );
|
||||
|
||||
@@ -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 );
|
||||
|
||||
|
||||
Reference in New Issue
Block a user