Changeset 1808
- Timestamp:
- 04/08/08 17:29:43 (8 months ago)
- Files:
-
- branches/release-34/php/lib/archive_lib.php (modified) (8 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/release-34/php/lib/archive_lib.php
r1747 r1808 63 63 function get_archive_name() { } 64 64 function &get_archive_list($ctx, $args) { } 65 function get_archive_link_sql($ctx, $ts, $at, $args) { }65 function get_archive_link_sql($ctx, $ts, $at, $args) { return ''; } 66 66 function archive_prev_next($args, $content, &$ctx, &$repeat, $tag) { } 67 67 function prepare_list(&$ctx, &$row) { } … … 116 116 function &get_archive_list($ctx, $args) { 117 117 return $ctx->mt->db->get_archive_list($args); 118 }119 120 function get_archive_link_sql($ctx, $ts, $at, $args) {121 return '';122 118 } 123 119 … … 308 304 return $ctx->mt->db->get_archive_list($args); 309 305 } 310 311 function get_archive_link_sql($ctx, $ts, $at, $args) {312 return '';313 }314 306 315 307 function template_params(&$ctx) { … … 356 348 $inside = $ctx->stash('inside_archive_list'); 357 349 if (!isset($inside)) { 358 $inside = false;350 $inside = false; 359 351 } 360 352 $args['inside_archive_list'] = $inside; … … 362 354 $args['current_timestamp_end'] = $ctx->stash('current_timestamp_end'); 363 355 return $ctx->mt->db->get_archive_list($args); 364 }365 366 function get_archive_link_sql($ctx, $ts, $at, $args) {367 return '';368 356 } 369 357 … … 416 404 $args['current_timestamp_end'] = $ctx->stash('current_timestamp_end'); 417 405 return $ctx->mt->db->get_archive_list($args); 418 }419 420 function get_archive_link_sql($ctx, $ts, $at, $args) {421 return '';422 406 } 423 407 … … 475 459 $args['current_timestamp_end'] = $ctx->stash('current_timestamp_end'); 476 460 return $ctx->mt->db->get_archive_list($args); 477 }478 479 function get_archive_link_sql($ctx, $ts, $at, $args) {480 return '';481 461 } 482 462 … … 1793 1773 } 1794 1774 } 1795 ?>
