strict checking

This commit is contained in:
John Bintz 2009-11-10 22:15:06 -05:00
parent 70867b8045
commit d2e227a549
4 changed files with 22 additions and 11 deletions

View File

@ -215,8 +215,10 @@ class ComicPressAdmin {
foreach ($_POST['attachments'] as $post_id => $settings) {
if (isset($settings['comicpress_management'])) {
$media_post = get_post($post_id);
$media_post->post_parent = $settings['post_parent'];
wp_update_post($media_post);
if (isset($media_post->post_parent)) {
$media_post->post_parent = $settings['post_parent'];
wp_update_post($media_post);
}
}
update_post_meta($post_id, 'comicpress', array(
'managed' => isset($settings['comicpress_management']

View File

@ -156,13 +156,16 @@ class ComicPressStoryline {
if (isset($this->_structure[$id])) {
$all_adjacent = array();
do {
$new_id = $this->_structure[$id][$direction];
$has_adjacent = false;
if (!in_array($new_id, $all_adjacent)) {
if ($has_adjacent = isset($this->_structure[$id][$direction])) {
$all_adjacent[] = $new_id;
$id = $new_id;
if (isset($this->_structure[$id][$direction])) {
$new_id = $this->_structure[$id][$direction];
if (!in_array($new_id, $all_adjacent)) {
if ($has_adjacent = isset($this->_structure[$id][$direction])) {
$all_adjacent[] = $new_id;
$id = $new_id;
}
}
}
} while ($has_adjacent);

View File

@ -18,8 +18,10 @@ class ComicPressBackendAttachment extends ComicPressBackend {
if (!empty($children)) {
foreach ($children as $child) {
$meta = get_post_meta($child->ID, 'comicpress', true);
if ($meta['managed']) {
$result[] = new ComicPressBackendAttachment($child);
if (isset($meta['managed'])) {
if ($meta['managed']) {
$result[] = new ComicPressBackendAttachment($child);
}
}
}
}

View File

@ -1,2 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit colors="true" bootstrap="test/bootstrap.php" />
<phpunit colors="true" bootstrap="test/bootstrap.php">
<php>
<ini name="error_reporting" value="30719" />
</php>
</phpunit>