Skip to content

Instantly share code, notes, and snippets.

@betaman
Created December 5, 2012 19:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save betaman/4218965 to your computer and use it in GitHub Desktop.
Save betaman/4218965 to your computer and use it in GitHub Desktop.
Missing Template
RuntimeException: Template not found: translator/settings/
Template->render ("translator/settings/", stdClass)
288/www/htdocs/v151009/jv/lib/Form.php
286. $page->add_script ('/js/jquery.verify_values.js');
287. if ($this->js_validation) {
288. return $tpl->render ('admin/default-validation', $o) . $tpl->render ($this->view, $o);
289. }
290. return $tpl->render ($this->view, $o);
Form->handle (Closure)
72/www/htdocs/v151009/jv/apps/translator/handlers/settings.php
70. $form->controller->add_notification (i18n_get ('Language updated.'));
71. $form->controller->redirect ('/translator/index');
72. });
73.
74. ?>
require ("/www/htdocs/v151009/jv/apps/translator/handlers/settings.php")
403/www/htdocs/v151009/jv/lib/Controller.php
401. // Run the handler and get its output
402. ob_start ();
403. require ($handler);
404. $out = ob_get_clean ();
405.
Controller->handle ("apps/translator/handlers/settings.php", false)
146/www/htdocs/v151009/jv/index.php
144. $handler = $controller->route ($_SERVER['REQUEST_URI']);
145. }
146. $page->body = $controller->handle ($handler, false);
147.
148. /**
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment