|
@@ 1914-1915 (lines=2) @@
|
| 1911 |
|
|
| 1912 |
|
if ( is_object( $this->pod ) ) |
| 1913 |
|
$check = $this->pod->delete( $id ); |
| 1914 |
|
else |
| 1915 |
|
$check = $this->pods_data->delete( $this->sql[ 'table' ], array( $this->sql[ 'field_id' ] => $id ) ); |
| 1916 |
|
|
| 1917 |
|
if ( $check ) |
| 1918 |
|
$this->message( sprintf( __( "<strong>Deleted:</strong> %s has been deleted.", 'pods' ), $this->item ) ); |
|
@@ 1950-1951 (lines=2) @@
|
| 1947 |
|
} |
| 1948 |
|
elseif ( is_object( $this->pod ) ) |
| 1949 |
|
$check = $this->pod->delete( $id ); |
| 1950 |
|
else |
| 1951 |
|
$check = $this->pods_data->delete( $this->sql[ 'table' ], array( $this->sql[ 'field_id' ] => $id ) ); |
| 1952 |
|
|
| 1953 |
|
if ( $check ) |
| 1954 |
|
$success = true; |