- Timestamp:
- 09/30/09 06:56:19 (8 weeks ago)
- Location:
- trunk
- Files:
-
- 4 modified
- 12 copied
-
lib/MT/Meta/Proxy.pm (modified) (3 diffs)
-
lib/MT/Template/ContextHandlers.pm (modified) (1 diff)
-
mt-static/js/edit.js (modified) (1 diff)
-
php/lib/block.mtifarchivetypeenabled.php (modified) (1 diff)
-
plugins/zemanta (copied) (copied from branches/dunlop/plugins/zemanta)
-
plugins/zemanta/INSTALL (copied) (copied from branches/dunlop/plugins/zemanta/INSTALL)
-
plugins/zemanta/MANIFEST (copied) (copied from branches/dunlop/plugins/zemanta/MANIFEST)
-
plugins/zemanta/Zemanta.pl (copied) (copied from branches/dunlop/plugins/zemanta/Zemanta.pl)
-
plugins/zemanta/json-proxy.cgi (copied) (copied from branches/dunlop/plugins/zemanta/json-proxy.cgi)
-
plugins/zemanta/lib (copied) (copied from branches/dunlop/plugins/zemanta/lib)
-
plugins/zemanta/lib/Zemanta (copied) (copied from branches/dunlop/plugins/zemanta/lib/Zemanta)
-
plugins/zemanta/lib/Zemanta/Basic.pm (copied) (copied from branches/dunlop/plugins/zemanta/lib/Zemanta/Basic.pm)
-
plugins/zemanta/lib/Zemanta/Product.pm (copied) (copied from branches/dunlop/plugins/zemanta/lib/Zemanta/Product.pm)
-
plugins/zemanta/lib/Zemanta/Utils.pm (copied) (copied from branches/dunlop/plugins/zemanta/lib/Zemanta/Utils.pm)
-
plugins/zemanta/tmpl (copied) (copied from branches/dunlop/plugins/zemanta/tmpl)
-
plugins/zemanta/tmpl/blog_config.tmpl (copied) (copied from branches/dunlop/plugins/zemanta/tmpl/blog_config.tmpl)
Legend:
- Unmodified
- Added
- Removed
-
trunk/lib/MT/Meta/Proxy.pm
r4156 r4480 75 75 76 76 my $field = $proxy->META_CLASS()->metadata_by_name($pkg, $col) 77 or Carp::croak("Metadata $col on $pkg not found.");77 or return undef; # XXX: Carp::croak("Metadata $col on $pkg not found."); 78 78 my $type = $field->{type} 79 79 or Carp::croak("$col not found on $pkg meta fields"); … … 144 144 145 145 my $field = $proxy->META_CLASS()->metadata_by_name($pkg, $col) 146 or Carp::croak("there's no field $col on $pkg");146 or return; # XXX: Carp::croak("there's no field $col on $pkg"); 147 147 148 148 my $type_id = $field->{type_id} … … 198 198 my $pkg = $proxy->{pkg}; 199 199 my $meta = $proxy->META_CLASS()->metadata_by_name($pkg, $field) 200 or Carp::croak("Metadata $field on $pkg not found.");200 or next; # XXX: Carp::croak("Metadata $field on $pkg not found."); 201 201 my $type = $meta->{type}; 202 202 -
trunk/lib/MT/Template/ContextHandlers.pm
r4156 r4480 15020 15020 =head2 EntryIfCommentsOpen 15021 15021 15022 Deprecated in favor of L< EntryIfCommentsActive>.15022 Deprecated in favor of L<IfCommentsActive>. 15023 15023 15024 15024 =for tags deprecated -
trunk/mt-static/js/edit.js
r3531 r4480 124 124 { 125 125 date: DOM.getElement( "created-on" ).value 126 + 'T' 127 + DOM.getElement( "entry_form" ).elements['authored_on_time'].value 128 + 'Z' 126 129 }, 127 130 this.getIndirectMethod( "handleCreatedOnDate" ), -
trunk/php/lib/block.mtifarchivetypeenabled.php
r4156 r4480 22 22 foreach ($maps as $map) { 23 23 if ($map['templatemap_build_type']) 24 $enabled ++;24 $enabled = 1; /* was $enabled++; */ 25 25 } 26 26 }
