BUG 10205 Al adicionar una nueva nota a un caso, el numero... SOLVED

- The title of case not is shown.
- was add valitation for title default.
This commit is contained in:
Marco Antonio Nina
2012-12-19 11:15:46 -04:00
parent 89dc42ee7c
commit 23b3329e33
2 changed files with 9 additions and 4 deletions

View File

@@ -75,6 +75,10 @@ class AppProxy extends HttpProxyController
$appNotes = new AppNotes();
$response = $appNotes->getNotesList( $appUid, '', $httpData->start, $httpData->limit );
require_once ("classes/model/Content.php");
$content = new Content();
$response['array']['appTitle'] = $content->load('APP_TITLE', '', $appUid, SYS_LANG);
return $response['array'];
}