BUG 8853 Adding the cases from "unassigned Folder" to simplified... SOLVED

- No had this option.
- Was added the functionality Unassigned Inbox.
This commit is contained in:
Marco Antonio Nina
2012-07-25 10:44:00 -04:00
parent fbdf3b1eec
commit 0564efebbe
4 changed files with 52 additions and 33 deletions

View File

@@ -58,6 +58,8 @@ class Home extends Controller
$this->setVar('usr', $data['u']);
$this->setVar('pwd', $data['p']);
$this->setVar('skin', $skin);
echo "<br><br>Este es el template<br><br>";
echo $template;
$this->setView("home/$template");
@@ -193,6 +195,7 @@ class Home extends Controller
switch ($httpData->t) {
case 'todo' : $title = 'My Inbox'; break;
case 'draft' : $title = 'My Drafts'; break;
case 'unassigned' : $title = 'Unassigned Inbox'; break;
default: $title = ucwords($httpData->t);
}
@@ -209,7 +212,7 @@ class Home extends Controller
$this->setVar('appListStart', $this->appListLimit);
$this->setVar('appListLimit', 10);
$this->setVar('listType', $httpData->t);
//print_r($this->render());
$this->render();
}