~fabiocbalbuquerque/sahana-agasti/web-services

« back to all changes in this revision

Viewing changes to apps/frontend/lib/form/doctrine/agPersonForm.class.php

  • Committer: Nils Stolpe
  • Date: 2011-07-20 01:51:19 UTC
  • mto: (1.26.1 push-trunk)
  • mto: This revision was merged to the branch mainline in revision 25.
  • Revision ID: nils.stolpe@mail.cuny.edu-20110720015119-40nsv5qpoauww27m
All that stuff that happened to the person form? It's happened to the facility form now too. 
CRUD is working on the geo data for facilities.
Also fixed INSTALL where the chgrp script's standing for Apache's user was www-data instead of WEB_GROUP.
The explanation of WEB_GROUP a few lines below makes sense again.

Show diffs side-by-side

added added

removed removed

Lines of Context:
977
977
              ->from('agAddressGeo')
978
978
              ->where('address_id = ?', $joinEntityAddressQuery->fetchOne()->address_id)
979
979
              ->execute();
980
 
          foreach($addressGeos as $$addressGeo) {
 
980
          foreach($addressGeos as $addressGeo) {
981
981
            $addressGeo->delete();
982
982
          }
983
983
        }