Quote:
Originally Posted by Delphiprogrammi
hi,
if anybody wants it .Here's howto do that.In the file /admincp/admin_warn.php
find this code
PHP Code:
if ($warn_opts['allowoffpost']=='No' AND $_POST['warn_type']=='No')
{
define('CP_REDIRECT', 'admin_warn.php?act=view');
print_stop_message('warning_warn_typeconflict');
}
below that add
PHP Code:
if(empty($_POST['warn_name']) OR $_POST['warn_name'] == '')
{
print_stop_message('warning_warn_emptywarntype');
}
if(empty($_POST['warn_desc']) OR $_POST['warn_desc'] == '')
{
print_stop_message('warning_warn_emptydesc');
}
if(empty($_POST['warn_points']) OR $_POST['warn_points'] == '')
{
print_stop_message('warning_warn_emptypoints');
}
if(empty($_POST['warn_maturity']) OR $_POST['warn_maturity'])
{
print_stop_message('warning_warn_maturity');
}
create 4 new phrases named as in the print_stop_message() call
that's it easy ...
|
If you are doing the good thing, do it complete, list the phrases as well.
Rgds