Luis Ángel San Martín 0487531bb6 Guardados en sesi?n los datos env?ados del cliente en el POST inicial.
Filtrado "de prueba" de los c?mics que ya estan en el dispositivo.
2012-09-21 07:59:08 +02:00

17 lines
473 B
C++

#include "errorcontroller.h"
#include "library_window.h" //get libraries
#include "template.h"
#include "../static.h"
extern LibraryWindow * mw;
ErrorController::ErrorController(int errorCode)
:error(errorCode)
{}
void ErrorController::service(HttpRequest& request, HttpResponse& response)
{
response.setStatus(300,"redirect");
response.write("<html> <head> <meta http-equiv=\"refresh\" content=\"0; URL=/\"> </head> <body> </body> </html>", true);
}