Skip to content

Commit

Permalink
Fixed issue #7195: Impossible to add participants from survey to CPDB
Browse files Browse the repository at this point in the history
  • Loading branch information
c-schmitz committed Mar 12, 2013
1 parent fe4f8e4 commit 3f29587
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion application/views/admin/htmleditor/pop_editor_view.php
Expand Up @@ -42,7 +42,7 @@ function closeme()
LimeReplacementFieldsType: "<?php echo $sFieldType; ?>",
LimeReplacementFieldsAction: "<?php echo $sAction; ?>",
smiley_path: "<?php echo Yii::app()->getConfig('rooturl') . '/upload/images/smiley/msn/'; ?>",
LimeReplacementFieldsPath : "<?php echo Yii::app()->getConfig('rooturl') . '/index.php/admin/limereplacementfields/sa/index'; ?>",
LimeReplacementFieldsPath : "<?php echo $this->createUrl("/admin/limereplacementfields/sa/index"); ?>",
language : "<?php echo $ckLanguage ?>"
<?php echo $htmlformatoption; ?> });
});
Expand Down
@@ -1,6 +1,7 @@
<script type="text/javascript">
var redUrl = "<?php echo Yii::app()->baseUrl . "/index.php/admin/participants/displayParticipants"; ?>";
var copyUrl = "<?php echo Yii::app()->baseUrl . "/index.php/admin/participants/addToCentral"; ?>";
var redUrl = "<?php echo $this->createUrl("/admin/participants/sa/displayParticipants"); ?>";
var copyUrl = "<?php echo $this->createUrl("/admin/participants/sa/addToCentral"); ?>";

var surveyId = "<?php echo Yii::app()->request->getQuery('sid'); ?>";

/* LANGUAGE */
Expand Down

0 comments on commit 3f29587

Please sign in to comment.