diff Keyword.class.php @ 146:4afd353b4507

merged with upstream
author Yoshiki Yazawa <yaz@honeyplanet.jp>
date Tue, 23 Mar 2010 02:37:31 +0900
parents a18df712fc7e 2cb414518ccd
children 190a3c46611d
line wrap: on
line diff
--- a/Keyword.class.php	Sun Mar 21 05:51:19 2010 +0900
+++ b/Keyword.class.php	Tue Mar 23 02:37:31 2010 +0900
@@ -4,6 +4,7 @@
 include_once( INSTALL_PATH . "/reclib.php" );
 include_once( INSTALL_PATH . "/Reservation.class.php" );
 include_once( INSTALL_PATH . '/Settings.class.php' );
+include_once( INSTALL_PATH . '/recLog.inc.php' );
 
 class Keyword extends DBRecord {
 	
@@ -99,6 +100,7 @@
 			try {
 				if( $rec->autorec ) {
 					Reservation::simple( $rec->id, $this->id, $this->autorec_mode );
+					reclog( "Keyword.class::キーワードID".$this->id."の録画が予約された");
 					usleep( 100 );		// あんまり時間を空けないのもどう?
 				}
 			}