2009-12-09 Raul Mateos <raulofpandora@gmail.com>
* godmode/reporting/map_builder.php: Corrected error in class. I don't add this to changelog. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@2188 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
1d8269e8a6
commit
971cc12eca
|
@ -90,7 +90,7 @@ if ($create_layout) {
|
|||
if ($id_layout !== false) {
|
||||
echo '<h3 class="suc">'.__('Successfully created').'</h3>';
|
||||
} else {
|
||||
echo '<h3 class="err">'.__('Could not be created').'</h3>';
|
||||
echo '<h3 class="error">'.__('Could not be created').'</h3>';
|
||||
}
|
||||
if (is_ajax ()) {
|
||||
return;
|
||||
|
@ -103,7 +103,7 @@ if ($delete_layout) {
|
|||
if ($result) {
|
||||
echo '<h3 class="suc">'.__('Successfully deleted').'</h3>';
|
||||
} else {
|
||||
echo '<h3 class="err">'.__('Not deleted. Error deleting data').'</h3>';
|
||||
echo '<h3 class="error">'.__('Not deleted. Error deleting data').'</h3>';
|
||||
}
|
||||
$id_layout = 0;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue