blob: 21492088c75dc46f5701041aee4a37bbe7a3445d (
plain)
1
2
3
4
5
6
7
8
9
|
<?php
function translation_editor_upgrade_event($event, $type, $object){
if(defined("UPGRADING") && (UPGRADING == "upgrading")){
// call action hook function to avoid coding the same thing twice
translation_editor_actions_hook("action", "upgrading", null, null);
}
}
|