Changeset 1390
- Timestamp:
- 02/21/08 19:47:13 (5 months ago)
- Files:
-
- branches/release-30/lib/MT/App.pm (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/release-30/lib/MT/App.pm
r1372 r1390 2184 2184 2185 2185 if (ref($body) && ($body->isa('MT::Template'))) { 2186 my $out = $app->build_page($body)2186 defined(my $out = $app->build_page($body)) 2187 2187 or die $body->errstr; 2188 2188 $body = $out; … … 2843 2843 if ($param{args}) { 2844 2844 foreach my $p (keys %{$param{args}}) { 2845 if (ref $param{args}{$p} ) {2845 if (ref $param{args}{$p} eq 'ARRAY') { 2846 2846 push @params, ($p . '=' . encode_url($_)) foreach @{$param{args}{$p}}; 2847 2847 } else {
