Fix File
•
/
home
/
sportsfe...
/
httpdocs
/
wp-conte...
/
plugins
/
sitepres...
/
classes
/
utilitie...
•
File:
class-wpml-wp-post.php
•
Content:
<?php class WPML_WP_Post { /** @var WPDB $wpdb */ public $wpdb; /** @var int */ private $post_id; /** * @param WPDB $wpdb * @param int $post_id */ public function __construct( WPDB $wpdb, $post_id ) { $this->wpdb = $wpdb; $this->post_id = $post_id; } /** * @param array $post_data_array * @param bool $direct_db_update */ public function update( array $post_data_array, $direct_db_update = false) { if ( $direct_db_update ) { $this->wpdb->update( $this->wpdb->posts, $post_data_array, array( 'ID' => $this->post_id ) ); clean_post_cache( $this->post_id ); } else { $post_data_array['ID'] = $this->post_id; wpml_update_escaped_post( $post_data_array ); } } }
•
Search:
•
Replace:
Function
Edit by line
Download
Information
Rename
Copy
Move
Delete
Chmod
List