Skip to content

Commit

Permalink
Fixed stupid error in bric_soap that prevented it from compiling.
Browse files Browse the repository at this point in the history
  • Loading branch information
theory committed Oct 20, 2008
1 parent 235304a commit a1f48b5
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bin/bric_soap
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ BEGIN {
"with-related-stories" => \$with_related_stories,
"with-related-media" => \$with_related_media,
"use-related-uri" => \$use_related_uri,
"all" => sub { $with_related_stories = 1 = $with_related_media = 1; },
"all" => sub { $with_related_stories = $with_related_media = 1; },
"to-preview" => \$to_preview,
"publish-date=s" => \$publish_date,
"published-only" => \$published_only,
Expand Down
11 changes: 9 additions & 2 deletions lib/Bric/Changes.pod
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,15 @@ Fixed a bug where authorization failiures in callbacks could lead to a bogus
error, rather than sending a "Permission Denied" error to the user. Reported
by Matt Rolf (Bug #1362). [David]

Fixed a div nesting bug which was causing buttons to improperly align depending
on pagination choices. [Matt Rolf]
=item *

Fixed a div nesting bug which was causing buttons to improperly align
depending on pagination choices. [Matt Rolf]

=item *

Fixed a typo in F<bric_soap> that prevented it from compiling. Reported by
Ashlee Caul. [David]

=back

Expand Down

0 comments on commit a1f48b5

Please sign in to comment.