Bericht
door plom-plom » 18 feb 2010, 13:40
voor "Email on Birthday"
One or more install actions failed. Please review the actions below, make any adjustments and retry. You may continue with the installation even though some of the actions failed. This is not recommended and may cause your board to not function correctly.
In-Line Find
in-line-replace
The In-Line Find specified by the MOD could not be found.The Find specified by the MOD could not be found
voor "Viewtopic Birthday"
One or more install actions failed. Please review the actions below, make any adjustments and retry. You may continue with the installation even though some of the actions failed. This is not recommended and may cause your board to not function correctly.
Find
'warnings' => 0,
'allow_pm' => 0,
// viewtopic birthday
'viewtopic_birthday'=> false,
Replace With
'warnings' => 0,
'allow_pm' => 0,
The Find specified by the MOD could not be found
Find
$user_cache[$poster_id]['age'] = (int) ($now['year'] - $bday_year - $diff);
}
}
// viewtopic birthday
$user_cache[$poster_id]['viewtopic_birthday'] = false;
if ($config['allow_birthdays'] && !empty($row['user_birthday']))
{
list($bday_day, $bday_month) = array_map('intval', explode('-', $row['user_birthday']));
if ($bday_day === (int) $now['mday'] && $bday_month === (int) $now['mon'])
{
$user_cache[$poster_id]['viewtopic_birthday'] = true;
}
}
Replace With
$user_cache[$poster_id]['age'] = (int) ($now['year'] - $bday_year - $diff);
}
}
The Find specified by the MOD could not be found
Find
'POSTER_AGE' => $user_cache[$poster_id]['age'],
// viewtopic birthday
'BIRTHDAY_IMG' => $user_cache[$poster_id]['viewtopic_birthday'] ? $user->img('icon_birthday', 'VIEWTOPIC_BIRTHDAY') : false,
Replace With
'POSTER_AGE' => $user_cache[$poster_id]['age'],
The Find specified by the MOD could not be found
includes/acp/acp_styles.php
Find
'user' => array(
'user_icon1', 'user_icon2', 'user_icon3', 'user_icon4', 'user_icon5', 'user_icon6', 'user_icon7', 'user_icon8', 'user_icon9', 'user_icon10',
),
);
// viewtopic birthday
$this->imageset_keys['icons'][] = 'icon_birthday';
Replace With
'user' => array(
'user_icon1', 'user_icon2', 'user_icon3', 'user_icon4', 'user_icon5', 'user_icon6', 'user_icon7', 'user_icon8', 'user_icon9', 'user_icon10',
),
);
Success
Find
'user' => array(
'user_icon1', 'user_icon2', 'user_icon3', 'user_icon4', 'user_icon5', 'user_icon6', 'user_icon7', 'user_icon8', 'user_icon9', 'user_icon10',
),
);
// viewtopic birthday
$this->imageset_keys['icons'][] = 'icon_birthday';
Replace With
'user' => array(
'user_icon1', 'user_icon2', 'user_icon3', 'user_icon4', 'user_icon5', 'user_icon6', 'user_icon7', 'user_icon8', 'user_icon9', 'user_icon10',
),
);
The Find specified by the MOD could not be found
language/en/common.php
Find
// viewtopic birthday
$lang = array_merge($lang, array(
'VIEWTOPIC_BIRTHDAY' => 'Birthday',
));
?>
Replace With
?>
Success
Find
// viewtopic birthday
$lang = array_merge($lang, array(
'VIEWTOPIC_BIRTHDAY' => 'Birthday',
));
?>
Replace With
?>
The Find specified by the MOD could not be found
styles/prosilver/imageset/imageset.cfg
Find
img_icon_user_warn = icon_user_warn.gif*20*20
img_icon_birthday = icon_birthday.gif*40*40
Replace With
img_icon_user_warn = icon_user_warn.gif*20*20
Success
Find
img_icon_user_warn = icon_user_warn.gif*20*20
img_icon_birthday = icon_birthday.gif*40*40
Replace With
img_icon_user_warn = icon_user_warn.gif*20*20
The Find specified by the MOD could not be found
styles/prosilver/template/viewtopic_body.html
Find
<!-- BEGIN custom_fields -->
<dd><strong>{postrow.custom_fields.PROFILE_FIELD_NAME}:</strong> {postrow.custom_fields.PROFILE_FIELD_VALUE}</dd>
<!-- END custom_fields -->
<!-- IF postrow.BIRTHDAY_IMG -->
<dd> </dd>
<dd>{postrow.BIRTHDAY_IMG}</dd>
<!-- ENDIF -->
Replace With
<!-- BEGIN custom_fields -->
<dd><strong>{postrow.custom_fields.PROFILE_FIELD_NAME}:</strong> {postrow.custom_fields.PROFILE_FIELD_VALUE}</dd>
<!-- END custom_fields -->
Success
Find
<!-- BEGIN custom_fields -->
<dd><strong>{postrow.custom_fields.PROFILE_FIELD_NAME}:</strong> {postrow.custom_fields.PROFILE_FIELD_VALUE}</dd>
<!-- END custom_fields -->
<!-- IF postrow.BIRTHDAY_IMG -->
<dd> </dd>
<dd>{postrow.BIRTHDAY_IMG}</dd>
<!-- ENDIF -->
Replace With
<!-- BEGIN custom_fields -->
<dd><strong>{postrow.custom_fields.PROFILE_FIELD_NAME}:</strong> {postrow.custom_fields.PROFILE_FIELD_VALUE}</dd>
<!-- END custom_fields -->
The Find specified by the MOD could not be found