Файл: EasyHost v2.0/system/htdocs/admin/emails/email/default.pl
Строк: 20
<?php
$system->error('This feature has been disabled in demo mode') if $system->config('demo');
$system->error('The template name is required') if (length($system->param('name')) == 0);
my $temp = $system->db->selectrow_array('SELECT id FROM emails WHERE name = ?',undef,$system->param('name'));
$system->error('The template name you entered has already been taken') if ($temp > 0 && $temp != $email->id);
$system->error('The template subject is required') if (length($system->param('subject')) == 0);
$system->error('The template message is required') if (length($system->param('message')) == 0);
$system->db->do('UPDATE emails SET name = ?,subject = ?,message = ? WHERE id = ?',undef,$system->param('name'),$system->param('subject'),$system->param('message'),$email->id);
$system->redirect('/admin/emails');
?>