Ребят прошу помощи, имеется кусок кода. Он передает POST. на версии 1.8 все отлично, на версии 2.2.4 в ответ выдает, "-2"
function explayMovieImport( $input ) {
$input.attr( 'disabled', 'true' ).parent( ).removeClass( 'iconDefault' ).removeClass( 'iconError' ).addClass( 'iconLoading' );
$.post( dle_root + "engine/modules/movie/ajax/import.load.php", { videoLink: encodeURIComponent( $input.val( ) ), idInput: $input.attr( 'id' ), idBlock: $input.attr( 'id' ) + 'Block', skin: dle_skin }, function( response ) {
responseInt = parseInt( response );
if ( responseInt == -1 || responseInt == -2 || responseInt == -3 ) {
$input.removeAttr( 'disabled' ).parent( ).removeClass( 'iconDefault' ).removeClass( 'iconLoading' ).addClass( 'iconError' );
} else {
$( '.explayMovieImportOverlay' ).prepend( response );
$element = $( '#' + $input.attr( 'id' ) + 'Block' );
$input.parent( ).removeClass( 'iconDefault' ).removeClass( 'iconError' ).removeClass( 'iconLoading' ).css( 'background-image', "url( '" + $element.attr( 'data-service-icon' ) + "' )" );
$( '.explayMovieImportServices' ).fadeOut( 200, function( ) {
$element.slideDown( 500 );
if ( $input.parent( ).parent( ).next( ).length > 0 ) $input.parent( ).parent( ).next( ).slideDown( 300 );
} );
}
} );
}