diff options
author | rub <rub@piwigo.org> | 2008-02-27 23:08:44 +0000 |
---|---|---|
committer | rub <rub@piwigo.org> | 2008-02-27 23:08:44 +0000 |
commit | 618158aca4d99fe522b0f54d547442f17a5db148 (patch) | |
tree | 87ebe949898d3c7992246a9564110dcd52393d6c /template/yoga/admin/notification_by_mail.tpl | |
parent | aed45457d79401bea60b556456ffc36dd7df889f (diff) |
Add comment tags in order to know tpl to migrate
# tag
for f in `find . -name \*.tpl`
do
echo $f
mv $f $f.tmp
echo '<!-- DEV TAG: not smarty migrated -->' > $f
cat $f.tmp >> $f
rm -f $f.tmp
done
#find file not migrated
for f in `find . -name \*.tpl`
do
grep -i '<!-- DEV TAG: not smarty migrated -->' $f > /dev/null && echo $f
done
git-svn-id: http://piwigo.org/svn/trunk@2222 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | template/yoga/admin/notification_by_mail.tpl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/template/yoga/admin/notification_by_mail.tpl b/template/yoga/admin/notification_by_mail.tpl index da7fa808e..ec04852cb 100644 --- a/template/yoga/admin/notification_by_mail.tpl +++ b/template/yoga/admin/notification_by_mail.tpl @@ -1,3 +1,4 @@ +<!-- DEV TAG: not smarty migrated --> <!-- $Id: notification_by_mail.tpl Ruben ARNAUD --> <div class="titrePage"> <ul class="categoryActions"> |