found yet another typo, so created a typo finder
This commit is contained in:
parent
27946c102d
commit
dd3f754e23
|
@ -165,7 +165,7 @@ function dfrn_confirm_post(&$a) {
|
||||||
if((count($r)) && ($r[0]['notify-flags'] & NOTIFY_CONFIRM)) {
|
if((count($r)) && ($r[0]['notify-flags'] & NOTIFY_CONFIRM)) {
|
||||||
|
|
||||||
$tpl = (($new_relation == $REL_BUD)
|
$tpl = (($new_relation == $REL_BUD)
|
||||||
? load_view_file('view/friend_complete_eml.tpl');
|
? load_view_file('view/friend_complete_eml.tpl')
|
||||||
: load_view_file('view/intro_complete_eml.tpl'));
|
: load_view_file('view/intro_complete_eml.tpl'));
|
||||||
|
|
||||||
$email_tpl = replace_macros($tpl, array(
|
$email_tpl = replace_macros($tpl, array(
|
||||||
|
|
|
@ -0,0 +1,13 @@
|
||||||
|
<?php
|
||||||
|
include 'boot.php';
|
||||||
|
|
||||||
|
$a = new App();
|
||||||
|
|
||||||
|
$files = glob('mod/*.php');
|
||||||
|
foreach($files as $file)
|
||||||
|
include_once($file);
|
||||||
|
|
||||||
|
|
||||||
|
$files = glob('include/*.php');
|
||||||
|
foreach($files as $file)
|
||||||
|
include_once($file);
|
Loading…
Reference in New Issue
Block a user